UNPKG

@revoloo/cypress6

Version:

Cypress.io end to end testing tool

40 lines (34 loc) 729 B
const e2e = require('../support/helpers/e2e').default const onServer = function (app) { app.get('/', (req, res) => { return res.send('<html>hi there</html>') }) app.get('/req', (req, res) => { return res.sendStatus(200) }) return app.get('/status', (req, res) => { return res.sendStatus(503) }) } describe('e2e blockHosts', () => { e2e.setup({ servers: [{ port: 3131, onServer, }, { port: 3232, onServer, }], settings: { baseUrl: 'http://localhost:3232', blockHosts: 'localhost:3131', video: false, }, }) it('passes', function () { return e2e.exec(this, { spec: 'block_hosts_spec.js', snapshot: true, }) }) })