configure karma to use chromium

This commit is contained in:
Ned Schwartz 2022-02-16 23:25:38 +00:00 коммит произвёл GitHub
Родитель 962adea958
Коммит 53c4784fa4
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -1,7 +1,9 @@
process.env.CHROME_BIN = require('chromium').path
module.exports = function (config) {
config.set({
frameworks: ['mocha', 'chai'],
files: [{pattern: '../dist/task-lists-element.js', type: 'module'}, 'test.js'],
files: [{ pattern: '../dist/task-lists-element.js', type: 'module' }, 'test.js'],
reporters: ['mocha'],
port: 9876,
colors: true,