@revoloo/cypress6
Version:
Cypress.io end to end testing tool
25 lines (21 loc) • 376 B
JavaScript
const e2e = require('../support/helpers/e2e').default
const hosts = {
'app.localhost': '127.0.0.1',
'foo.bar.baz.com.au': '127.0.0.1',
}
describe('e2e domain', () => {
e2e.setup({
servers: {
port: 4848,
static: true,
},
})
e2e.it('passes', {
spec: 'domain*',
snapshot: true,
video: false,
config: {
hosts,
},
})
})