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