mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-03 05:20:38 -05:00
b6a64604ba
* fix: workaround for the electron animation bug * fix bug * Update packages/server/test/unit/browsers/electron_spec.js Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * try something * try something * try something * try something * fix * fix * fix * refactor and ensure still broken * and the fix * Update packages/server/test/unit/browsers/electron_spec.js Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update packages/server/lib/browsers/electron.ts Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update CHANGELOG.md * refactor * Update cli/CHANGELOG.md * Update cli/CHANGELOG.md Co-authored-by: Matt Schile <mschile@cypress.io> * fix build * Update packages/server/test/unit/browsers/electron_spec.js --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Jennifer Shehane <jennifer@cypress.io> Co-authored-by: Matt Schile <mschile@cypress.io>
10 lines
329 B
TypeScript
10 lines
329 B
TypeScript
import { default as systemTests } from '../lib/system-tests'
|
|
|
|
describe('e2e electron animation bug', () => {
|
|
systemTests.it('executes a test that demonstrates the electron animation bug and ensures that we have worked around it', {
|
|
browser: 'electron',
|
|
project: 'e2e',
|
|
spec: 'electron_animation_bug.cy.ts',
|
|
})
|
|
})
|