(fetchMock: ReturnType<typeof vi.fn>)
| 42 | } |
| 43 | |
| 44 | function getFirstFetchBody(fetchMock: ReturnType<typeof vi.fn>) { |
| 45 | const [, init] = fetchMock.mock.calls[0]! |
| 46 | return JSON.parse(init.body) |
| 47 | } |
| 48 | |
| 49 | describe('virtual-console', () => { |
| 50 | test('generates inline code with specified levels', () => { |
no outgoing calls
no test coverage detected