@revoloo/cypress6
Version:
Cypress.io end to end testing tool
54 lines (46 loc) • 1.08 kB
JavaScript
const fs = require('fs')
const Fixtures = require('../support/helpers/fixtures')
const e2e = require('../support/helpers/e2e').default
const onServer = function (app) {
app.get('/index.html', (req, res) => {
return res.send(`\
<html>
<body>
some bad js a comin'
</body>
</html>\
`)
})
app.get('/gzip-bad.html', (req, res) => {
const buf = fs.readFileSync(Fixtures.path('server/gzip-bad.html.gz'))
return res.set({
'content-type': 'text/html',
'content-encoding': 'gzip',
})
.send(buf)
})
return app.get('/gzip-bad.js', (req, res) => {
const buf = fs.readFileSync(Fixtures.path('server/gzip-bad.html.gz'))
return res.set({
'content-type': 'application/javascript',
'content-encoding': 'gzip',
})
.send(buf)
})
}
describe('e2e js error handling', () => {
e2e.setup({
servers: [{
port: 1122,
static: true,
}, {
port: 1123,
onServer,
}],
})
e2e.it('fails', {
spec: 'js_error_handling_failing_spec.js',
snapshot: true,
expectedExitCode: 5,
})
})