From ec76dbfffc980e6e52f20d9955d7f519e5ea10f7 Mon Sep 17 00:00:00 2001 From: alanv Date: Tue, 21 Jul 2026 19:07:00 -0500 Subject: [PATCH] Fix tsconfig.test.json path for integration tests --- experiment/test/js/jest.config.integration.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/experiment/test/js/jest.config.integration.js b/experiment/test/js/jest.config.integration.js index ea1329ebf1d..049a67b492f 100644 --- a/experiment/test/js/jest.config.integration.js +++ b/experiment/test/js/jest.config.integration.js @@ -22,7 +22,7 @@ module.exports = { '^.+\\.tsx?$': [ 'ts-jest', { - tsconfig: 'node_modules/@labkey/build/webpack/tsconfig.test.json', + tsconfig: 'node_modules/@labkey/build/configs/tsconfig.test.json', } ] },