forked from cypress-io/cypress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcy_origin_error_spec.ts
55 lines (48 loc) · 1.83 KB
/
cy_origin_error_spec.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import path from 'path'
import systemTests, { expect } from '../lib/system-tests'
import Fixtures from '../lib/fixtures'
const e2ePath = Fixtures.projectPath('e2e')
const PORT = 3500
const onServer = function (app) {
app.get('/secondary_origin.html', (_, res) => {
res.sendFile(path.join(e2ePath, 'secondary_origin.html'))
})
}
const commonConfig = {
hosts: {
'*.foobar.com': '127.0.0.1',
},
e2e: {
experimentalOriginDependencies: true,
},
}
// TODO: This is probably more appropriate for a cy-in-cy test
// https://github.com/cypress-io/cypress/issues/20973
describe('e2e cy.origin errors', () => {
systemTests.setup({
servers: [{
port: 4466,
onServer,
}],
})
systemTests.it('captures the stack trace correctly for errors in cross origins to point users to their "cy.origin" callback', {
browser: '!webkit', // TODO(webkit): fix+unskip (needs multidomain support)
// keep the port the same to prevent issues with the snapshot
port: PORT,
spec: 'cy_origin_error.cy.ts',
expectedExitCode: 2,
config: commonConfig,
async onRun (exec) {
const { stdout } = await exec()
expect(stdout).to.contain('AssertionError')
expect(stdout).to.contain('Timed out retrying after 1ms: Expected to find element: `#doesnotexist`, but never found it.')
// FIXME: @see https://github.com/cypress-io/cypress/issues/29614
// projects using Typescript 5 do not calculate the userInvocationStack correctly,
// leading to a small mismatch when linking stack traces back to the user's IDE from
// the command log.
// check to make sure stack trace contains the 'cy.origin' source
expect(stdout).to.contain('webpack://e2e/./cypress/e2e/cy_origin_error.cy.ts:16')
expect(stdout).to.contain('webpack://e2e/./cypress/e2e/cy_origin_error.cy.ts:34')
},
})
})