Skip to content

Commit 4f9de22

Browse files
authored
improve exercises diff (#8)
1 parent e20932a commit 4f9de22

File tree

504 files changed

+1503
-5
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

504 files changed

+1503
-5
lines changed

exercises/03.assertions/05.problem.soft-assertions/tsconfig.app.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
"include": ["src/**/*"],
44
"exclude": ["src/**/*.test.ts*"],
55
"compilerOptions": {
6-
"lib": ["ES2020", "DOM", "DOM.Iterable"],
7-
"jsx": "react-jsx"
6+
"lib": ["ES2020"]
87
}
98
}

exercises/04.performance/03.problem.test-isolation/.gitignore

Lines changed: 0 additions & 3 deletions
This file was deleted.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
test('equals to 1', ({ expect }) => {
2+
expect(1).toBe(1)
3+
})
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
test('equals to 2', ({ expect }) => {
2+
expect(2).toBe(2)
3+
})
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
test('equals to 3', ({ expect }) => {
2+
expect(3).toBe(3)
3+
})
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
test('equals to 4', ({ expect }) => {
2+
expect(4).toBe(4)
3+
})
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
test('equals to 5', ({ expect }) => {
2+
expect(5).toBe(5)
3+
})
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
test('equals to 6', ({ expect }) => {
2+
expect(6).toBe(6)
3+
})
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
test('equals to 7', ({ expect }) => {
2+
expect(7).toBe(7)
3+
})
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
test('equals to 8', ({ expect }) => {
2+
expect(8).toBe(8)
3+
})

0 commit comments

Comments
 (0)