ethers.js/karma-esm.conf.js

55 lines
1.6 KiB
JavaScript
Raw Normal View History

2019-11-24 13:13:37 +03:00
"use strict";
module.exports = function(config) {
config.set({
2020-11-17 05:20:35 +03:00
basePath: "./output/karma",
2019-11-24 13:13:37 +03:00
frameworks: [ 'mocha' ],
files: [
2020-11-17 05:20:35 +03:00
{ pattern: "./ethers.esm.js", type: "module" },
{ pattern: "./tests.esm.js", type: "module" }
2019-11-24 13:13:37 +03:00
],
reporters: [ 'karma' ],
2019-08-19 18:53:58 +03:00
plugins: [
'karma-mocha',
'karma-chrome-launcher',
require('./packages/tests/karma-reporter')
],
2019-11-24 13:13:37 +03:00
port: 9876,
logLevel: config.LOG_INFO,
browsers: [ 'ChromeHeadless', "HeadlessLittleLiar" ],
2019-11-24 13:13:37 +03:00
autoWatch: false,
singleRun: true,
browserNoActivityTimeout: 3600000,
customLaunchers: {
HeadlessLittleLiar: {
base: 'ChromeHeadless',
// https://peter.sh/experiments/chromium-command-line-switches/
flags: [
'--disable-extensions',
// Enable this to help debug CORS issues (otherwise fetch throws a useless TypeError)
//'--disable-web-security',
'--enable-automation',
// Cloudflare will block (on the testnet endpoints) any traffic
// from a headless chome (based on the user agent), so we lie
// This was take from Safari, because that is what I had on-hand
'--user-agent', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15',
// https://stackoverflow.com/questions/58484124/karma-disconnectedreconnect-failed-before-timeout-of-with-chromeheadless
'--disable-gpu',
'--no-sandbox'
],
}
},
2019-11-24 13:13:37 +03:00
/*
client: {
mocha: {
grep: 'utf',
}
}
*/
})
}