зеркало из https://github.com/github/combobox-nav.git
20 строки
456 B
JavaScript
20 строки
456 B
JavaScript
process.env.CHROME_BIN = require('chromium').path
|
|
|
|
module.exports = function(config) {
|
|
config.set({
|
|
frameworks: ['mocha', 'chai'],
|
|
files: [
|
|
{pattern: 'dist/index.js', type: 'module'},
|
|
{pattern: 'test/test.js', type: 'module'}
|
|
],
|
|
reporters: ['mocha'],
|
|
port: 9876,
|
|
colors: true,
|
|
logLevel: config.LOG_INFO,
|
|
browsers: ['ChromeHeadless'],
|
|
autoWatch: false,
|
|
singleRun: true,
|
|
concurrency: Infinity
|
|
})
|
|
}
|