gpt4 book ai didi

sql - 我可以在 plugin/index.js 文件中传递 Cypress.env 吗?

转载 作者:行者123 更新时间:2023-12-04 09:46:18 24 4
gpt4 key购买 nike

我创建了一个 cypress 'task' 来从 DB 获取数据,我不想将 configDB 的凭据存储在索引文件中,并希望通过 cypress.json 传递它。 Cypress.env 不起作用有解决方法吗?

const configDB = {
server: "xxx",
port: xxx,
domain: "US",
user: "username",
password: "password",
database: "database",
driver: "tedious",
options: {
enableArithAbort: true,
},
};
const sql = require("mssql");

最佳答案

引用 here .

plugins/index.js文件,将其设置为 config.env :

module.exports = (on, config) => {
// `on` is used to hook into various events Cypress emits
// `config` is the resolved Cypress config

// modify env var value
config.env.ENVIRONMENT = 'dev';

// return config to update the global configuration
return config
}

关于sql - 我可以在 plugin/index.js 文件中传递 Cypress.env 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62090386/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com