Skip to content

Commit 6e339ff

Browse files
committedOct 14, 2024·
Update dependencies
1 parent 5ec4395 commit 6e339ff

7 files changed

+3270
-1222
lines changed
 

‎karma.config.cjs

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ module.exports = function (config) {
1919
config.set({
2020
frameworks: ['mocha', 'chai'],
2121
files: [
22-
{ pattern: 'dist/index.js', type: 'module' },
23-
{ pattern: 'dist/async-tasks.js', type: 'module' },
24-
{ pattern: 'test/test.js', type: 'module' }
22+
{pattern: 'dist/index.js', type: 'module'},
23+
{pattern: 'dist/async-tasks.js', type: 'module'},
24+
{pattern: 'test/test.js', type: 'module'},
2525
],
2626
reporters: ['mocha'],
2727
port: 9876,
@@ -30,6 +30,6 @@ module.exports = function (config) {
3030
browsers: ['ChromeHeadless'],
3131
autoWatch: false,
3232
singleRun: true,
33-
concurrency: Infinity
33+
concurrency: Infinity,
3434
})
3535
}

0 commit comments

Comments
 (0)
Please sign in to comment.