在 TestCafe 中设置环境变量给出未定义的值

Setting Environment Variables in TestCafe giving undefined value

我正在学习 TestCafe,我是新手。

我正在尝试按照此处提到的方式进行操作:https://devexpress.github.io/testcafe/documentation/recipes/access-environment-variables-in-tests.html

我有一个代码可以在我的 windows 机器上运行!!

fixture`Getting Started`.page`http://devexpress.github.io/testcafe/example`;

test("My First Test", async t => {
    await t
    .typeText('#developer-name', 'John Smith')
    .click('#submit-button')
    .takeScreenshot();

    const articleHeader = await Selector('.result-content').find('h1');
    
    // Obtain the text of the article header
    let headerText = await articleHeader.innerText;
    console.log(process.env.DEV_MODE);
});

我的脚本部分是这样的

"scripts": {
    "setnode": "set DEV_MODE=staging",
    "test:chrome": "npm run setnode & npx testcafe \"chrome --start-fullscreen\" e2e/tests"
  }

当我运行这个命令npm run test:chrome

我得到这样的输出

ui-testcafe-poc@1.0.0 setnode C:\TestCafeProjects\ui-testcafe-poc set DEV_MODE=staging

 Running tests in:
 - Chrome 79.0.3945.130 / Windows 10

Getting Started  

undefined   

√ My First Test

为什么 console.log 写为未定义而不是暂存?

脚本中的符号 (&) 运行 将它们并行。但是,您需要使用 && 操作数按顺序 运行 它们。

此外,npm 脚本在后台生成 shell 进程(Windows 上的 cmd),并且 set 命令设置的变量仅存在于它自己的会话中。以下脚本应该有效:

"scripts": {        
    "test:chrome": "set DEV_MODE=staging && npx testcafe \"chrome --start-fullscreen\" e2e/tests"
}