.mocharc.jsonc 336 B

1234567891011
  1. {
  2. // Ideally this file should extend the root one and only set "check-leaks" to false
  3. // but extends is broken: https://github.com/mochajs/mocha/issues/3916
  4. "require": "ts-node/register",
  5. "loader": "ts-node/esm",
  6. "extensions": ["js", "ts"],
  7. "watch-files": ["src"],
  8. "timeout": 30000,
  9. "reporter": "spec",
  10. "exit": true
  11. }