Skip to content

Commit f06fa17

Browse files
committed
Merge branch 'ax/scrum-123-add-unit-testing' of https://github.com/UTSC-CSCC01-Software-Engineering-I/term-group-project-c01w25-project-course-matrix into ax/scrum-123-add-unit-testing
2 parents 4b46274 + 5e9e133 commit f06fa17

File tree

3 files changed

+43
-37
lines changed

3 files changed

+43
-37
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
import '@testing-library/jest-dom';
1+
import "@testing-library/jest-dom";
Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
11
{
2-
"compilerOptions": {
3-
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
4-
"target": "ES2020",
5-
"useDefineForClassFields": true,
6-
"lib": ["ES2020", "DOM", "DOM.Iterable"],
7-
"module": "ESNext",
8-
"skipLibCheck": true,
2+
"compilerOptions": {
3+
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
4+
"target": "ES2020",
5+
"useDefineForClassFields": true,
6+
"lib": ["ES2020", "DOM", "DOM.Iterable"],
7+
"module": "ESNext",
8+
"skipLibCheck": true,
99

10-
/* Bundler mode */
11-
"moduleResolution": "bundler",
12-
"allowImportingTsExtensions": true,
13-
"isolatedModules": true,
14-
"moduleDetection": "force",
15-
"noEmit": true,
16-
"jsx": "react-jsx",
10+
/* Bundler mode */
11+
"moduleResolution": "bundler",
12+
"allowImportingTsExtensions": true,
13+
"isolatedModules": true,
14+
"moduleDetection": "force",
15+
"noEmit": true,
16+
"jsx": "react-jsx",
1717

18-
/* Linting */
19-
"strict": true,
20-
"noUnusedLocals": true,
21-
"noUnusedParameters": true,
22-
"noFallthroughCasesInSwitch": true,
23-
"noUncheckedSideEffectImports": true,
18+
/* Linting */
19+
"strict": true,
20+
"noUnusedLocals": true,
21+
"noUnusedParameters": true,
22+
"noFallthroughCasesInSwitch": true,
23+
"noUncheckedSideEffectImports": true,
2424

25-
"baseUrl": ".",
26-
"paths": {
27-
"@/*": ["./src/*"]
28-
}
29-
},
30-
"include": ["src", "tests/setupTests.ts"]
25+
"baseUrl": ".",
26+
"paths": {
27+
"@/*": ["./src/*"]
28+
}
29+
},
30+
"include": ["src", "tests/setupTests.ts"]
3131
}
Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,19 @@
11
{
22
"compilerOptions": {
3-
"target": "ESNext",
4-
"module": "ESNext",
5-
"moduleResolution": "node",
6-
"esModuleInterop": true,
7-
"skipLibCheck": true,
8-
"strict": true,
9-
"jsx": "react-jsx",
10-
"types": ["jest", "@testing-library/jest-dom"]
3+
"target": "ESNext",
4+
"module": "ESNext",
5+
"moduleResolution": "node",
6+
"esModuleInterop": true,
7+
"skipLibCheck": true,
8+
"strict": true,
9+
"jsx": "react-jsx",
10+
"types": ["jest", "@testing-library/jest-dom"]
1111
},
12-
"include": ["**/*.test.tsx", "**/*.test.ts", "./jest.config.ts", "tests", "src"]
13-
}
12+
"include": [
13+
"**/*.test.tsx",
14+
"**/*.test.ts",
15+
"./jest.config.ts",
16+
"tests",
17+
"src"
18+
]
19+
}

0 commit comments

Comments
 (0)