Skip to content

Commit

Permalink
Switch mocha to jest
Browse files Browse the repository at this point in the history
  • Loading branch information
fredericbarthelet committed Apr 11, 2021
1 parent f037363 commit 586e68d
Show file tree
Hide file tree
Showing 4 changed files with 12,732 additions and 7,557 deletions.
5 changes: 5 additions & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
preset: 'ts-jest',
testPathIgnorePatterns: ["dist"],
testEnvironment: 'node',
};
4 changes: 2 additions & 2 deletions nodemon.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"watch": ["src"],
"ignore": ["test/**/*.test.ts"],
"ext": "ts,mjs,js,json",
"exec": "etsc && node ./dist/plugin.js",
"ext": "ts,js,json",
"exec": "etsc",
"legacyWatch": true
}
Loading

0 comments on commit 586e68d

Please sign in to comment.