| 6 | import { mock } from 'node:test' |
| 7 | |
| 8 | class TestClass { |
| 9 | static hello() { |
| 10 | return 'world' |
| 11 | } |
| 12 | |
| 13 | constructor(name) { |
| 14 | this.name = name |
| 15 | } |
| 16 | |
| 17 | getName() { |
| 18 | return this.name |
| 19 | } |
| 20 | } |
| 21 | |
| 22 | describe('Engine', () => { |
| 23 | let intervals = [] |
nothing calls this directly
no outgoing calls
no test coverage detected