generated from ministryofjustice/hmpps-template-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cypress.config.ts
60 lines (55 loc) · 1.99 KB
/
cypress.config.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
56
57
58
59
60
import { defineConfig } from 'cypress'
import { resetStubs } from './integration_tests/mockApis/wiremock'
import auth from './integration_tests/mockApis/auth'
import tokenVerification from './integration_tests/mockApis/tokenVerification'
import componentApi from './integration_tests/mockApis/componentApi'
import orchestrationService from './integration_tests/mockApis/orchestration'
import prisonerContactRegistry from './integration_tests/mockApis/prisonerContactRegistry'
import whereaboutsOffenderEvents from './integration_tests/mockApis/whereabouts'
import prisonApi from './integration_tests/mockApis/prison'
import prisonerSearch from './integration_tests/mockApis/prisonerSearch'
export default defineConfig({
chromeWebSecurity: false,
fixturesFolder: 'integration_tests/fixtures',
screenshotsFolder: 'integration_tests/screenshots',
videosFolder: 'integration_tests/videos',
reporter: 'cypress-multi-reporters',
reporterOptions: {
configFile: 'reporter-config.json',
},
taskTimeout: 60000,
viewportWidth: 1280,
viewportHeight: 1400,
e2e: {
setupNodeEvents(on) {
on('task', {
reset: resetStubs,
...auth,
...tokenVerification,
...componentApi,
...orchestrationService,
...prisonerContactRegistry,
...prisonApi,
...prisonerSearch,
...whereaboutsOffenderEvents,
// Log message to console
log: (message: string) => {
// eslint-disable-next-line no-console
console.log(message)
return null
},
// Log table to console
table: (violationData: Record<string, string>[]) => {
// eslint-disable-next-line no-console
console.table(violationData)
return null
},
})
},
baseUrl: 'http://localhost:3007',
excludeSpecPattern: '**/!(*.cy).ts',
specPattern: 'integration_tests/e2e/**/*.cy.{js,jsx,ts,tsx}',
supportFile: 'integration_tests/support/index.ts',
experimentalRunAllSpecs: true,
},
})