Polymer Starter Kit包含web-component-tester,用于对自定义元素进行单元测试。 在wct.conf.json中,您可以指定运行测试的浏览器。
{
"suites": ["app/test"],
"plugins": {
"local": {
"browsers": ["firefox"]
}
}
不幸的是,当我通过gulp启动测试时,wct无法找到我的本地Firefox。我在GitHub读到wct使用启动板来检测本地浏览器。 Afaik,在Windows机器上,启动板在默认目录" C:\ Program Files \ Mozilla Firefox"中搜索Firefox。但我在另一个目录中安装了Firefox。
有没有办法在wct.conf.json中配置我的Firefox目录的路径?
答案 0 :(得分:0)
不知道它在配置中是如何工作的,但您可以设置一个环境变量:
LAUNCHPAD_CHROME=/c/Users/you/chromium-v85/chrome.exe npm test
文档:https://github.com/bitovi/launchpad#environment-variables-impacting-local-browsers-detection