npm install
ポリマー プロジェクトで実行するときに、ソース接続バイナリのプリフェッチを無効にする方法はありますか?
外の世界に接続されていない CI でテストを実行しています。ソース接続バイナリを使用したくないので、バイナリのフェッチを無効にしたいと考えています。
wct.conf.js:
const seleniumGridAddress = 'http://selenium-hub:4444/wd/hub';
const os = require('os');
let json;
if (os.platform() !== 'darwin') {
json = {
activeBrowsers: [{
browserName: 'chrome',
url: seleniumGridAddress
}
],
expanded: true,
suites: [
'test/**/*_test.html'
],
webserver: {
hostname: os.hostname()
},
}
} else {
json = {
expanded: true,
plugins: {
local: {
browsers: ["chrome"]
},
},
suites: [
'test/**/*_test.html'
]
}
}
module.exports = json;