mirror of
https://github.com/cypress-io/cypress.git
synced 2026-04-27 10:19:26 -05:00
48 lines
1.4 KiB
TypeScript
48 lines
1.4 KiB
TypeScript
import systemTests, { expect } from '../lib/system-tests'
|
|
import Fixtures from '../lib/fixtures'
|
|
|
|
const verifyPassedAndFailedAreSame = (expectedFailures) => {
|
|
return ({ stdout }) => {
|
|
const passes = stdout.match(/✓ ✓ VERIFY/g)
|
|
|
|
expect(passes?.length || 0, 'number of passes should equal the number of failures').to.equal(expectedFailures)
|
|
}
|
|
}
|
|
|
|
describe('e2e error ui', function () {
|
|
systemTests.setup()
|
|
|
|
beforeEach(() => {
|
|
Fixtures.scaffoldProject('e2e')
|
|
})
|
|
|
|
;[
|
|
'webpack-preprocessor',
|
|
'webpack-preprocessor-ts-loader',
|
|
'webpack-preprocessor-ts-loader-compiler-options',
|
|
'webpack-preprocessor-awesome-typescript-loader',
|
|
]
|
|
.forEach((project) => {
|
|
systemTests.it(`handles sourcemaps in webpack for project: ${project}`, {
|
|
project,
|
|
spec: 'failing_spec.*',
|
|
expectedExitCode: 1,
|
|
onRun (exec) {
|
|
return exec().then(verifyPassedAndFailedAreSame(1))
|
|
},
|
|
})
|
|
})
|
|
|
|
// https://github.com/cypress-io/cypress/issues/16255
|
|
systemTests.it('handles errors when integration folder is outside of project root', {
|
|
project: 'integration-outside-project-root/project-root',
|
|
spec: '../../../integration/failing_spec.js',
|
|
expectedExitCode: 1,
|
|
onRun (exec) {
|
|
Fixtures.scaffoldProject('integration-outside-project-root')
|
|
|
|
return exec().then(verifyPassedAndFailedAreSame(1))
|
|
},
|
|
})
|
|
})
|