mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-25 00:19:22 -06:00
* fix: wire up scaffolded indexHtml to dev servers * fix vite tests * update vuecli-5, fix system tests * fix vite build error and launchpad test * remove only * address comments, remove gitignores * remove only
30 lines
799 B
TypeScript
30 lines
799 B
TypeScript
import systemTests from '../lib/system-tests'
|
|
|
|
describe('component testing projects', function () {
|
|
systemTests.setup()
|
|
|
|
systemTests.it('create-react-app-custom-index-html', {
|
|
project: 'create-react-app-custom-index-html',
|
|
testingType: 'component',
|
|
spec: 'src/App.cy.jsx',
|
|
browser: 'chrome',
|
|
expectedExitCode: 0,
|
|
})
|
|
|
|
systemTests.it('vueclivue3-custom-index-html', {
|
|
project: 'vueclivue3-custom-index-html',
|
|
testingType: 'component',
|
|
spec: 'src/components/HelloWorld.cy.js',
|
|
browser: 'chrome',
|
|
expectedExitCode: 0,
|
|
})
|
|
|
|
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,
|
|
})
|
|
})
|