8000 Unskip all 'add' tests · MonsWriter/javascript-exercises@299fd7d · GitHub
[go: up one dir, main page]

Skip to content

Commit 299fd7d

Browse files
committed
Unskip all 'add' tests
1 parent 6bd3486 commit 299fd7d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

08_calculator/calculator.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ describe('add', () => {
55
expect(calculator.add(0,0)).toBe(0);
66
});
77

8-
test.skip('adds 2 and 2', () => {
8+
test('adds 2 and 2', () => {
99
expect(calculator.add(2,2)).toBe(4);
1010
});
1111

12-
test.skip('adds positive numbers', () => {
12+
test('adds positive numbers', () => {
1313
expect(calculator.add(2,6)).toBe(8);
1414
});
1515
});

0 commit comments

Comments
 (0)
0