mirror of
https://github.com/cypress-io/cypress.git
synced 2026-04-28 10:49:48 -05:00
25 lines
376 B
JavaScript
25 lines
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,
|
|
},
|
|
})
|
|
})
|