From 9a130a9f194d67a694b15a169e6694d4e521e4ef Mon Sep 17 00:00:00 2001 From: Chris Wilkinson Date: Fri, 10 Jan 2020 14:42:10 +0000 Subject: [PATCH] chore: only run tests in the test directory Makes sure that only tests in the `test` directory are run. --- jest.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/jest.config.js b/jest.config.js index bc7da071..ff9179ab 100644 --- a/jest.config.js +++ b/jest.config.js @@ -1,4 +1,5 @@ module.exports = { + rootDir: 'test', transform: { '^.+\\.ts$': 'ts-jest', },