Files
cypress/system-tests/test/e2e_with_mount_import_spec.ts
T
Tyler Biethman 782dfb7a90 test: Fixing system test with missing setup (#22767)
* test: Fixing test with missing setup

* Blank commit for percy
2022-07-13 12:16:53 -05:00

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,
})
})