mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-21 06:30:49 -06:00
* 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>
14 lines
323 B
TypeScript
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,
|
|
})
|
|
})
|