From 4bbde98f80a3faff5409d4894ca14d66194aea70 Mon Sep 17 00:00:00 2001 From: Alexander Shelepenok Date: Wed, 25 May 2022 20:46:31 +0000 Subject: [PATCH] fix(testing): replace quotes --- internal/testing/jest-config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/testing/jest-config.ts b/internal/testing/jest-config.ts index 34aca07..37c5b4c 100644 --- a/internal/testing/jest-config.ts +++ b/internal/testing/jest-config.ts @@ -30,7 +30,7 @@ const jestConfig: Config.InitialOptions = { transform: { "^.+\\.(t)sx?$": ["@swc/jest", swc] }, setupFiles: ["/internal/testing/jest-setup.ts"], testPathIgnorePatterns: ["node_modules", ".cache", "public"], - transformIgnorePatterns: [`node_modules/(?!(gatsby|gatsby-script)/)`], + transformIgnorePatterns: ["node_modules/(?!(gatsby|gatsby-script)/)"], }; export default jestConfig;