(PERCY) 警告:跳过视觉测试。 PERCY_TOKEN 未提供
(PERCY) Warning: skipping visual tests. PERCY_TOKEN was not provided
我每次尝试 运行 'npx percy exec -- node snapshots.js'.
时都会收到下面的错误
PowerShell 终端
问题图片 ->
https://i.stack.imgur.com/XCSj6.png
我已遵循此教程 -> https://docs.percy.io/docs/percyscript-tutorial
有人知道怎么解决吗?我到处找,什么也没找到。
提前致谢!
PowerShell 使用不同的语法来处理环境变量。
试试这个:
$env:PERCY_TOKEN = "token"
要在 windows 上设置 PERCY_TOKEN,我们必须使用 powershell。
1.Open powershell on windows
2. Go to project library through commands cd, cd..
3.Set the PERCY_TOKEN $env:PERCY_TOKEN='your token'
4. Then run your project using powershell through your command npm run test:percy
我每次尝试 运行 'npx percy exec -- node snapshots.js'.
时都会收到下面的错误PowerShell 终端
问题图片 -> https://i.stack.imgur.com/XCSj6.png
我已遵循此教程 -> https://docs.percy.io/docs/percyscript-tutorial
有人知道怎么解决吗?我到处找,什么也没找到。
提前致谢!
PowerShell 使用不同的语法来处理环境变量。
试试这个:
$env:PERCY_TOKEN = "token"
要在 windows 上设置 PERCY_TOKEN,我们必须使用 powershell。
1.Open powershell on windows
2. Go to project library through commands cd, cd..
3.Set the PERCY_TOKEN $env:PERCY_TOKEN='your token'
4. Then run your project using powershell through your command npm run test:percy