Skip to content

Commit

Permalink
test: removed os-specific test
Browse files Browse the repository at this point in the history
  • Loading branch information
rufiange committed Nov 2, 2024
1 parent c566afa commit e1e2188
Showing 1 changed file with 1 addition and 15 deletions.
16 changes: 1 addition & 15 deletions test/spec/modules/contxtfulRtdProvider_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -560,21 +560,7 @@ describe('contxtfulRtdProvider', function () {
new PointerEvent('pointermove', { clientX: 1, clientY: 2 }),
{ x: 1, y: 2 },
'pointer move',
],
[
new TouchEvent('touchmove', {
touches: [
new Touch({
identifier: 1,
target: window.document,
clientX: 11,
clientY: 22,
}),
],
}),
{ x: 11, y: 22 },
'touch move',
],
]
];

moveEventTheories.forEach(([event, expected, _description]) => {
Expand Down

0 comments on commit e1e2188

Please sign in to comment.