mirror of https://github.com/waku-org/js-waku.git
Increase Karma default timeout for mocha
As we have some fast-check tests.
This commit is contained in:
parent
4743491d6a
commit
3e85b4cdce
|
@ -15,6 +15,11 @@ module.exports = function (config) {
|
||||||
reporters: ['progress', 'karma-typescript'],
|
reporters: ['progress', 'karma-typescript'],
|
||||||
browsers: ['ChromeHeadless'],
|
browsers: ['ChromeHeadless'],
|
||||||
singleRun: true,
|
singleRun: true,
|
||||||
|
client: {
|
||||||
|
mocha: {
|
||||||
|
timeout: 6000, // Default is 2s
|
||||||
|
},
|
||||||
|
},
|
||||||
karmaTypescriptConfig: {
|
karmaTypescriptConfig: {
|
||||||
bundlerOptions: {
|
bundlerOptions: {
|
||||||
entrypoints: /^.*[^(node)]\.spec\.ts$/,
|
entrypoints: /^.*[^(node)]\.spec\.ts$/,
|
||||||
|
|
Loading…
Reference in New Issue