mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-25 16:39:04 -06:00
14 lines
327 B
TypeScript
14 lines
327 B
TypeScript
import systemTests from '../lib/system-tests'
|
|
|
|
describe('@cypress/webpack-dev-server', function () {
|
|
systemTests.setup()
|
|
|
|
systemTests.it('successfully loads and runs all specs', {
|
|
project: 'webpack-dev-server',
|
|
testingType: 'component',
|
|
spec: 'src/**/*',
|
|
browser: 'chrome',
|
|
expectedExitCode: 0,
|
|
})
|
|
})
|