configure karma to use chromium

This commit is contained in:
Ned Schwartz 2022-02-16 23:11:12 +00:00 коммит произвёл GitHub
Родитель d49a2e7012
Коммит 6bb732ae52
1 изменённых файлов: 4 добавлений и 2 удалений

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

@ -1,3 +1,5 @@
process.env.CHROME_BIN = require('chromium').path
function checker(request, response, next) {
if (request.method === 'POST' && request.url === '/ok') {
response.setHeader('content-type', 'text/html')
@ -25,8 +27,8 @@ module.exports = function (config) {
basePath: '..',
frameworks: ['mocha', 'chai'],
files: [
{pattern: 'dist/index.js', type: 'module'},
{pattern: 'test/test.js', type: 'module'}
{ pattern: 'dist/index.js', type: 'module' },
{ pattern: 'test/test.js', type: 'module' }
],
reporters: ['mocha'],
port: 9876,