mirror of
https://github.com/thelounge/thelounge
synced 2024-11-10 06:34:21 +00:00
commit
2b146ba3e6
2 changed files with 3 additions and 4 deletions
|
@ -25,8 +25,9 @@
|
|||
"lint:stylelint": "stylelint --color \"client/**/*.css\"",
|
||||
"lint": "run-p --aggregate-output --continue-on-error lint:*",
|
||||
"start": "node index start",
|
||||
"test": "run-p --aggregate-output --continue-on-error lint:* test:*",
|
||||
"test:mocha": "cross-env NODE_ENV=test webpack --mode=development && cross-env NODE_ENV=test TS_NODE_PROJECT='./test/tsconfig.json' nyc --nycrc-path=test/.nycrc-mocha.json mocha --require ts-node/register --colors --config=test/.mocharc.yml",
|
||||
"test": "run-p --aggregate-output --continue-on-error lint:* test:mocha",
|
||||
"test:mocha": "webpack --mode=development && cross-env NODE_ENV=test TS_NODE_PROJECT='./test/tsconfig.json' mocha --config=test/.mocharc.yml 'test/**/*.ts'",
|
||||
"test:nospec": "webpack --mode=development && cross-env NODE_ENV=test TS_NODE_PROJECT='./test/tsconfig.json' mocha --config=test/.mocharc.yml",
|
||||
"watch": "webpack --watch",
|
||||
"githooks-install": "git config core.hooksPath scripts/git-hooks"
|
||||
},
|
||||
|
|
|
@ -2,8 +2,6 @@ color: true
|
|||
check-leaks: true
|
||||
recursive: true
|
||||
reporter: dot
|
||||
interactive: false
|
||||
spec: "test/**/*.ts"
|
||||
ignore: "test/client/**"
|
||||
extension: ["ts", "js"]
|
||||
require:
|
||||
|
|
Loading…
Reference in a new issue