forked from cypress-io/cypress-example-recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
30 lines (26 loc) · 1.08 KB
/
index.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
/* eslint-disable no-console */
// ***********************************************************
// This example plugins/index.js can be used to load plugins
//
// You can change the location of this file or turn off loading
// the plugins file with the 'pluginsFile' configuration option.
//
// You can read more here:
// https://on.cypress.io/plugins-guide
// ***********************************************************
// This function is called when a project is opened or re-opened (e.g. due to
// the project's config changing)
// load the environment variables from the local .env file
require('dotenv').config()
module.exports = (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
}