mirror of
https://github.com/thelounge/thelounge
synced 2024-11-10 06:34:21 +00:00
646bafab99
If we specify the spec in the config file, we can't manually specify a specific test file from the cli. This is annoying, as the alternative is copying out the full package.json blurb into the shell. Rather, give the spec in the invocation and add a helper that makes testing a specific file simple. With this `yarn test:nospec test/plugins/link.ts` will only run tests within that file
13 lines
249 B
YAML
13 lines
249 B
YAML
color: true
|
|
check-leaks: true
|
|
recursive: true
|
|
reporter: dot
|
|
ignore: "test/client/**"
|
|
extension: ["ts", "js"]
|
|
require:
|
|
- "ts-node/register"
|
|
# - "jsdom-global/register"
|
|
- "test/fixtures/env.ts"
|
|
globals:
|
|
- "__VUE_PROD_DEVTOOLS__"
|
|
- "__VUE__"
|