mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-10 17:20:11 -06:00
14 lines
354 B
TypeScript
14 lines
354 B
TypeScript
import systemTests from '../lib/system-tests'
|
|
|
|
describe('component testing projects', function () {
|
|
systemTests.setup()
|
|
|
|
systemTests.it('vue3-vite-ts-custom-index-html', {
|
|
project: 'vue3-vite-ts-custom-index-html',
|
|
testingType: 'component',
|
|
spec: 'src/components/HelloWorld.cy.ts',
|
|
browser: 'chrome',
|
|
expectedExitCode: 0,
|
|
})
|
|
})
|