Skip to content

Commit cf1847d

Browse files
authored
Merge pull request #140 from Danto1606/Unit-Test-Suite--Price-Math
Unit Test Suite: Price Math
2 parents 892e76f + 0c88e61 commit cf1847d

File tree

4 files changed

+7040
-2643
lines changed

4 files changed

+7040
-2643
lines changed

jest.config.ts

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import type { Config } from "jest";
2+
3+
const config: Config = {
4+
testEnvironment: "node",
5+
extensionsToTreatAsEsm: [".ts"],
6+
transform: {
7+
"^.+\\.ts$": [
8+
"ts-jest",
9+
{
10+
useESM: true,
11+
tsconfig: "tsconfig.json",
12+
},
13+
],
14+
},
15+
testMatch: ["<rootDir>/test/**/*.jest.test.ts"],
16+
};
17+
18+
export default config;
19+

0 commit comments

Comments
 (0)