Skip to content

Commit 7bc59db

Browse files
authored
Package Updates (#216)
1 parent 55642cd commit 7bc59db

3 files changed

Lines changed: 408 additions & 443 deletions

File tree

reactExamples/jest.config.js

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
/*
2+
* Copyright (c) 2026 LabKey Corporation. All rights reserved. No portion of this work may be reproduced
3+
* in any form or by any electronic or mechanical means without written permission from LabKey Corporation.
4+
*/
5+
module.exports = {
6+
globals: {
7+
LABKEY: {},
8+
},
9+
moduleFileExtensions: ['ts', 'tsx', 'js'],
10+
setupFilesAfterEnv: ['./test/jest.setup.ts'],
11+
testEnvironment: 'jsdom',
12+
testRegex: '(\\.(test))\\.(ts|tsx)$',
13+
testResultsProcessor: 'jest-teamcity-reporter',
14+
transform: {
15+
'^.+\\.tsx?$': [
16+
'ts-jest',
17+
{
18+
tsconfig: 'node_modules/@labkey/build/webpack/tsconfig.test.json',
19+
},
20+
],
21+
},
22+
};

0 commit comments

Comments
 (0)