@revoloo/cypress6
Version:
Cypress.io end to end testing tool
19 lines (15 loc) • 338 B
text/typescript
import e2e from '../support/helpers/e2e'
const PORT = 3333
describe('e2e issue 7481', () => {
e2e.setup({
servers: {
port: PORT,
},
})
e2e.it('does not error loading authenticated url', {
spec: 'simple_passing_spec.js',
config: {
baseUrl: `http://username:password@localhost:${PORT}/`,
},
})
})