We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent edecb33 commit a567cf2Copy full SHA for a567cf2
.github/workflows/firefox-tests.yml
packages/vue-collapsed/tests/Collapse.cy.ts
@@ -2,18 +2,6 @@ import App from './App.vue'
2
import { getRandomIntInclusive, isFirefox } from '../cypress/support/component'
3
4
describe('Collapse', () => {
5
- beforeEach(() => {
6
- /**
7
- * For some unknown reason on Cypress Firefox >=124 (only on CI) reduced motion is always set to 'reduce',
8
- * using this stub to force it to return true.
9
- */
10
- if (isFirefox) {
11
- cy.stub(window, 'matchMedia').withArgs('(prefers-reduced-motion: reduce)').returns({
12
- matches: false,
13
- })
14
- }
15
16
-
17
it('Should be able to set different tag name', () => {
18
cy.mount(App, {
19
props: {
0 commit comments