Files
cypress/system-tests/test/webpack_dev_server_spec.ts
Lachlan Miller 1b152fca1b fix(webpack-dev-server): do not encodeUri in loader (#20575)
* fix: do not encodeUri in webpack loader

* add tests

* fix test

* fix: use decodeURI in loader and add tests (#20593)

* add tests for non-unicode and specs with ...

* add more system tests

Co-authored-by: Zachary Williams <ZachJW34@gmail.com>
2022-03-15 12:49:45 +10:00

14 lines
323 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: '**/*',
browser: 'chrome',
expectedExitCode: 0,
})
})