Files
cypress/system-tests/test/webpack_preprocessor_spec.ts
Casey Holzer 823ffd0ca9 fix: Webpack 5 automatic publicPath error (#23760)
* fix: Webpack 5 automatic publicPath error

* update webpack-preprocessor test

* fix: disable webpack-preprocessor chunking

* stub LimitChunkCountPlugin

Co-authored-by: Zachary Williams <zachjw34@gmail.com>
2022-09-19 11:35:09 +10:00

14 lines
314 B
TypeScript

import systemTests from '../lib/system-tests'
describe('@cypress/webpack-preprocessor', function () {
systemTests.setup()
systemTests.it('with Webpack 5', {
project: 'webpack-preprocessor-webpack-5',
testingType: 'e2e',
spec: '**/*.cy.js',
browser: 'chrome',
expectedExitCode: 0,
})
})