|
1 |
| -describe("Events behavior with shiftKey modifier applied", () => { |
| 1 | +describe("Events behavior with single modifier applied", () => { |
2 | 2 | beforeEach(() => {
|
3 | 3 | cy.visit("./cypress/fixtures/modifiers-test.html");
|
4 | 4 | });
|
5 | 5 |
|
6 |
| - // NOTE: for some reason after upgrading CI to use Chrome 116 and Cypress 13 this particular test fails |
7 |
| - // and only on CI. Figure out if this is a real issue or some version conflict | cypress bug. |
8 |
| - // |
9 |
| - // @see https://app.circleci.com/pipelines/github/dmtrKovalenko/cypress-real-events/842/workflows/1f98e690-ec69-4dcf-9e0e-3f8eb67dc709/jobs/2332/parallel-runs/0?filterBy=ALL |
10 |
| - it.skip("detects shift key modifier on click", () => { |
11 |
| - cy.get("#action-button").realClick({ shiftKey: true }); |
12 |
| - cy.contains("Shift key was pressed"); |
13 |
| - }); |
| 6 | + const modifierKeys = ["shiftKey", "altKey", "ctrlKey", "metaKey"]; |
14 | 7 |
|
15 |
| - it("detects shift key modifier on hover", () => { |
16 |
| - cy.get("#mouse-move-div").realHover({ shiftKey: true }); |
17 |
| - cy.contains("Shift key was pressed"); |
18 |
| - }); |
| 8 | + function createModifierObject(modifierKey: string) { |
| 9 | + const options = {}; |
| 10 | + options[modifierKey] = true; |
| 11 | + return options; |
| 12 | + } |
19 | 13 |
|
20 |
| - it("detects shift key modifier on mousedown", () => { |
21 |
| - cy.get("#mouse-down-div").realMouseDown({ shiftKey: true }); |
22 |
| - cy.contains("Shift key was pressed"); |
23 |
| - }); |
| 14 | + modifierKeys.forEach((modifierKey) => { |
| 15 | + // NOTE: for some reason after upgrading CI to use Chrome 116 and Cypress 13 this particular test fails |
| 16 | + // and only on CI. Figure out if this is a real issue or some version conflict | cypress bug. |
| 17 | + // |
| 18 | + // @see https://app.circleci.com/pipelines/github/dmtrKovalenko/cypress-real-events/842/workflows/1f98e690-ec69-4dcf-9e0e-3f8eb67dc709/jobs/2332/parallel-runs/0?filterBy=ALL |
| 19 | + it.skip(`detects ${modifierKey} modifier on click`, () => { |
| 20 | + cy.get("#action-button").realClick(createModifierObject(modifierKey)); |
| 21 | + cy.contains(`${modifierKey} was pressed`); |
| 22 | + }); |
24 | 23 |
|
25 |
| - it("detects shift key modifier on mpuseup", () => { |
26 |
| - cy.get("#mouse-up-div").realMouseUp({ shiftKey: true }); |
27 |
| - cy.contains("Shift key was pressed"); |
28 |
| - }); |
| 24 | + it(`detects ${modifierKey} modifier on hover`, () => { |
| 25 | + cy.get("#mouse-move-div").realHover(createModifierObject(modifierKey)); |
| 26 | + cy.contains(`${modifierKey} was pressed`); |
| 27 | + }); |
29 | 28 |
|
30 |
| - it("detects shift key modifier on mousemove", () => { |
31 |
| - cy.get("#mouse-move-div").realMouseMove(100, 50, { shiftKey: true }); |
32 |
| - cy.contains("Shift key was pressed"); |
| 29 | + it(`detects ${modifierKey} modifier on mousedown`, () => { |
| 30 | + cy.get("#mouse-down-div").realMouseDown( |
| 31 | + createModifierObject(modifierKey), |
| 32 | + ); |
| 33 | + cy.contains(`${modifierKey} was pressed`); |
| 34 | + }); |
| 35 | + it(`detects ${modifierKey} modifier on mpuseup`, () => { |
| 36 | + cy.get("#mouse-up-div").realMouseUp(createModifierObject(modifierKey)); |
| 37 | + cy.contains(`${modifierKey} was pressed`); |
| 38 | + }); |
| 39 | + it(`detects ${modifierKey} modifier on mousemove`, () => { |
| 40 | + cy.get("#mouse-move-div").realMouseMove( |
| 41 | + 100, |
| 42 | + 50, |
| 43 | + createModifierObject(modifierKey), |
| 44 | + ); |
| 45 | + cy.contains(`${modifierKey} was pressed`); |
| 46 | + }); |
33 | 47 | });
|
34 | 48 | });
|
0 commit comments