From 88aeec9bbd54d3f83a421ea9f729834f4ab81500 Mon Sep 17 00:00:00 2001 From: Mateus F Torres Date: Mon, 7 Feb 2022 11:00:20 -0300 Subject: [PATCH] fix(jest): change config file extension See related issue https://github.com/facebook/jest/issues/11453 --- jest.config.ts => jest.config.cjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename jest.config.ts => jest.config.cjs (99%) diff --git a/jest.config.ts b/jest.config.cjs similarity index 99% rename from jest.config.ts rename to jest.config.cjs index cceb548ba..29628f94c 100644 --- a/jest.config.ts +++ b/jest.config.cjs @@ -4,7 +4,7 @@ * https://jestjs.io/docs/configuration */ -export default { +module.exports = { // All imported modules in your tests should be mocked automatically // automock: false,