mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-04 05:50:47 -05:00
782dfb7a90
* test: Fixing test with missing setup * Blank commit for percy
15 lines
443 B
TypeScript
15 lines
443 B
TypeScript
import systemTests from '../lib/system-tests'
|
|
|
|
describe('e2e tests with mount import', () => {
|
|
systemTests.setup()
|
|
|
|
// see: https://github.com/cypress-io/cypress/issues/22589
|
|
systemTests.it('should not run CT side effects in e2e with mount registration', {
|
|
project: 'component-tests',
|
|
spec: 'passing-with-mount.cy.js',
|
|
browser: 'chrome',
|
|
configFile: 'cypress-e2e-mount-import.config.js',
|
|
expectedExitCode: 0,
|
|
})
|
|
})
|