Skip to content

Commit 61eaa6d

Browse files
authored
fix: test env (#56)
* chore: regenerate package-lock.json by npm install * build: upgrade dependencies * build: upgrade esbuild from 0.13.15 to 0.14.10 * fix: missing jest in dev dependencies * build: ignore large test case test/loadApplication.test.ts * docs: add comment why the test case is ignored by default
1 parent f3467da commit 61eaa6d

File tree

6 files changed

+8487
-2337
lines changed

6 files changed

+8487
-2337
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,4 @@ lib
1515
dist
1616
.vscode
1717
.s.lock
18+
website-base/

jest.config.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ export default {
88
coverageProvider: 'v8',
99
preset: 'ts-jest',
1010
testEnvironment: 'node',
11-
testMatch: ['**/test/loadComponent.test.ts'],
12-
testPathIgnorePatterns: ['./test/fixtures'],
11+
testPathIgnorePatterns: ['./test/fixtures', './test/loadApplication.test.ts'],
1312
setupFilesAfterEnv: ['./jest.setup.ts'],
1413
};

0 commit comments

Comments
 (0)