You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
507 B
JavaScript
23 lines
507 B
JavaScript
1 year ago
|
module.exports = function (wallaby) {
|
||
|
return {
|
||
|
name: 'Rocket.Chat.js.SDK',
|
||
|
files: [
|
||
|
"src/**/*.ts",
|
||
|
{ pattern: "src/**/*.spec.ts", ignore: true },
|
||
|
{ pattern: "src/**/*.d.ts", ignore: true },
|
||
|
],
|
||
|
tests: ["src/**/*.spec.ts"],
|
||
|
testFramework: 'mocha',
|
||
|
env: {
|
||
|
type: 'node'
|
||
|
},
|
||
|
compilers: {
|
||
|
'**/*.ts?(x)': wallaby.compilers.typeScript({ module: 'commonjs' })
|
||
|
},
|
||
|
debug: true,
|
||
|
slowTestThreshold: 200,
|
||
|
delays: {
|
||
|
run: 1000
|
||
|
}
|
||
|
}
|
||
|
}
|