|
1 | 1 | const isPrime = require('../isPrime') |
2 | 2 |
|
3 | | -test('0 should not be a prime', () => { |
| 3 | +test.skip('0 should not be a prime', () => { |
4 | 4 | expect(isPrime(0)).toBe(false) |
5 | 5 | }) |
6 | 6 |
|
7 | | -test('1 should not be a prime', () => { |
| 7 | +test.skip('1 should not be a prime', () => { |
8 | 8 | expect(isPrime(1)).toBe(false) |
9 | 9 | }) |
10 | 10 |
|
11 | | -test('2 should be a prime', () => { |
| 11 | +test.skip('2 should be a prime', () => { |
12 | 12 | expect(isPrime(2)).toBe(true) |
13 | 13 | }) |
14 | 14 |
|
15 | | -test('3 should be a prime', () => { |
| 15 | +test.skip('3 should be a prime', () => { |
16 | 16 | expect(isPrime(3)).toBe(true) |
17 | 17 | }) |
18 | 18 |
|
19 | | -test('5 should be a prime', () => { |
| 19 | +test.skip('5 should be a prime', () => { |
20 | 20 | expect(isPrime(5)).toBe(true) |
21 | 21 | }) |
22 | 22 |
|
23 | | -test('6 should not be a prime', () => { |
| 23 | +test.skip('6 should not be a prime', () => { |
24 | 24 | expect(isPrime(6)).toBe(false) |
25 | 25 | }) |
26 | 26 |
|
27 | | -test('15 should not be a prime', () => { |
| 27 | +test.skip('15 should not be a prime', () => { |
28 | 28 | expect(isPrime(15)).toBe(false) |
29 | 29 | }) |
30 | 30 |
|
31 | | -test('27 should not be a prime', () => { |
| 31 | +test.skip('27 should not be a prime', () => { |
32 | 32 | expect(isPrime(27)).toBe(false) |
33 | 33 | }) |
34 | 34 |
|
35 | | -test('97 should be a prime', () => { |
| 35 | +test.skip('97 should be a prime', () => { |
36 | 36 | expect(isPrime(97)).toBe(true) |
37 | 37 | }) |
38 | 38 |
|
39 | | -test('3125 should not be a prime', () => { |
| 39 | +test.skip('3125 should not be a prime', () => { |
40 | 40 | expect(isPrime(3125)).toBe(false) |
41 | 41 | }) |
0 commit comments