chore(): temporarily skip flaky ws test

This commit is contained in:
Tiago Siebler
2023-11-14 11:14:15 +00:00
parent c45dd5d382
commit dc6e0ff52a
3 changed files with 13 additions and 5 deletions

View File

@@ -6,7 +6,7 @@ module.exports = {
__PROD__: false
},
testEnvironment: 'node',
preset: "ts-jest",
preset: 'ts-jest',
verbose: true, // report individual test
bail: false, // enable to stop test when an error occur,
detectOpenHandles: false,
@@ -16,6 +16,7 @@ module.exports = {
collectCoverageFrom: [
'src/**/*.ts'
],
testTimeout: 10000,
coverageThreshold: {
// coverage strategy
global: {
@@ -25,4 +26,4 @@ module.exports = {
statements: -10
}
}
};
};