()
| 12 | expect(false).toBeTruthy(); |
| 13 | }; |
| 14 | const redeclare = () => { |
| 15 | expect.assertions(1); |
| 16 | expect(false).toBeTruthy(); |
| 17 | expect.assertions(2); |
| 18 | }; |
| 19 | |
| 20 | const noAssertions = () => { |
| 21 | expect.assertions(0); |
nothing calls this directly
no test coverage detected