From 73c1a7325f173f883b65c0eee10cce49527b9504 Mon Sep 17 00:00:00 2001 From: jesomm Date: Wed, 9 Aug 2017 14:28:41 -0700 Subject: [PATCH] enable running all the tests we have (#70) * fix module cycle * revert 381fd12, which shouldn't be in master This reverts commit 381fd128d3a3e2c63d45e8fba5357c5ac3c4773b. * a couple changes to make all tests run --- jest.config.js | 2 +- test/legacy/trace/{tests.ts => traceTests.ts} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename test/legacy/trace/{tests.ts => traceTests.ts} (100%) diff --git a/jest.config.js b/jest.config.js index 8a4545d..f42e3d9 100644 --- a/jest.config.js +++ b/jest.config.js @@ -13,7 +13,7 @@ module.exports = { '.(ts|tsx)': '/jest.preprocessor.js' }, transformIgnorePatterns: ['node_modules', 'build'], - testMatch: ['**/*Tests.ts'], + testMatch: ['**/*Tests.ts', '**/*Tests.tsx'], coverageDirectory: 'build/coverage', collectCoverageFrom: [ 'src/**/*.{ts,tsx,js,jsx}', diff --git a/test/legacy/trace/tests.ts b/test/legacy/trace/traceTests.ts similarity index 100% rename from test/legacy/trace/tests.ts rename to test/legacy/trace/traceTests.ts