-
Notifications
You must be signed in to change notification settings - Fork 7
/
cypress.config.ts
62 lines (55 loc) · 1.87 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
61
62
import { defineConfig } from "cypress"
import path from "path"
export default defineConfig({
env: {
NEXTAUTH_SECRET: process.env.NEXTAUTH_SECRET,
},
viewportWidth: 1920,
viewportHeight: 1080,
e2e: {
setupNodeEvents(on, config) {
require("cypress-terminal-report/src/installLogsPrinter")(on)
// implement node event listeners here
on("before:browser:launch", (browser, launchOptions) => {
// the browser width and height we want to get
// our screenshots and videos will be of that resolution
const width = 1920
const height = 1080
if (browser.name === "chrome" && browser.isHeadless) {
launchOptions.args.push(`--window-size=${width},${height}`)
// force screen to be non-retina and just use our given resolution
launchOptions.args.push("--force-device-scale-factor=1")
}
if (browser.name === "electron" && browser.isHeadless) {
// might not work on CI for some reason
launchOptions.preferences.width = width
launchOptions.preferences.height = height
}
if (browser.name === "firefox" && browser.isHeadless) {
launchOptions.args.push(`--width=${width}`)
launchOptions.args.push(`--height=${height}`)
}
// IMPORTANT: return the updated browser launch options
return launchOptions
})
},
baseUrl: "http://localhost:3000",
},
component: {
setupNodeEvents(on, config) {
const termReportConfig = { printLogsToConsole: "onFail" }
require("cypress-terminal-report/src/installLogsPrinter")(on, termReportConfig)
},
devServer: {
framework: "next",
bundler: "webpack",
webpackConfig: {
resolve: {
alias: {
"@components": path.resolve(__dirname, "./src/components"),
},
},
},
},
},
})