File tree Expand file tree Collapse file tree 1 file changed +8
-9
lines changed Expand file tree Collapse file tree 1 file changed +8
-9
lines changed Original file line number Diff line number Diff line change 1
1
const { expect } = require ( 'chai' ) ;
2
2
3
3
describe ( 'Testing numbers' , ( ) => {
4
- it ( '1 is equal to 1' , ( ) => {
5
- expect ( 1 === 1 ) . to . be . true ;
6
- } ) ;
7
-
8
4
it ( '2 is equal to 2' , ( ) => {
9
5
expect ( 2 === 2 ) . to . be . true ;
10
6
} ) ;
11
7
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 ;
14
10
} ) ;
15
-
16
11
it ( '3 is equal to 3' , ( ) => {
17
12
expect ( 3 === 3 ) . to . be . true ;
18
13
} ) ;
19
14
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 ;
22
17
} ) ;
23
18
24
19
it ( '5 is equal to 5' , ( ) => {
25
20
expect ( 5 === 5 ) . to . be . true ;
26
21
} ) ;
27
22
23
+ it ( '4 is equal to 4' , ( ) => {
24
+ expect ( 4 === 4 ) . to . be . true ;
25
+ } ) ;
26
+
28
27
it ( '6 is equal to 6' , ( ) => {
29
28
expect ( 6 === 6 ) . to . be . true ;
30
29
} ) ;
You can’t perform that action at this time.
0 commit comments