forked from cypress-io/cypress-example-recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cypress.config.js
31 lines (27 loc) · 935 Bytes
/
cypress.config.js
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
/* eslint-disable no-console */
const { defineConfig } = require('cypress')
// load the environment variables from the local .env file
require('dotenv').config()
// This function is called when a project is opened or re-opened (e.g. due to
// the project's config changing)
module.exports = defineConfig({
env: {
'my-var': 'ok',
},
fixturesFolder: false,
e2e: {
supportFile: false,
setupNodeEvents (on, config) {
// we can grab some process environment variables
// and stick it into config.env before returning the updated config
config.env = config.env || {}
// you could extract only specific variables
// and rename them if necessary
config.env.FOO = process.env.FOO
config.env.BAR = process.env.BAR
config.env.username = process.env.USER_NAME
console.log('extended config.env with process.env.{FOO, BAR, USER_NAME}')
return config
},
},
})