Skip to content

Commit 75a7a7d

Browse files
committed
Update: add 7-skip.test.js file
1 parent 453cbec commit 75a7a7d

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

0x06-unittests_in_js/7-skip.test.js

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,29 @@
11
const { expect } = require('chai');
22

33
describe('Testing numbers', () => {
4-
it('1 is equal to 1', () => {
5-
expect(1 === 1).to.be.true;
6-
});
7-
84
it('2 is equal to 2', () => {
95
expect(2 === 2).to.be.true;
106
});
117

12-
it.skip('1 is equal to 3', () => {
13-
expect(1 === 3).to.be.true;
8+
it('1 is equal to 1', () => {
9+
expect(1 === 1).to.be.true;
1410
});
15-
1611
it('3 is equal to 3', () => {
1712
expect(3 === 3).to.be.true;
1813
});
1914

20-
it('4 is equal to 4', () => {
21-
expect(4 === 4).to.be.true;
15+
it.skip('1 is equal to 3', () => {
16+
expect(1 === 3).to.be.true;
2217
});
2318

2419
it('5 is equal to 5', () => {
2520
expect(5 === 5).to.be.true;
2621
});
2722

23+
it('4 is equal to 4', () => {
24+
expect(4 === 4).to.be.true;
25+
});
26+
2827
it('6 is equal to 6', () => {
2928
expect(6 === 6).to.be.true;
3029
});

0 commit comments

Comments
 (0)