7 lines
211 B
TypeScript
7 lines
211 B
TypeScript
|
import { run } from '../src/run'
|
||
|
|
||
|
describe('This is a placeholder for intial test cases, to be removed', () => {
|
||
|
test('Dummy test case', async () => {
|
||
|
await expect(run()).rejects.toThrow();
|
||
|
})
|
||
|
})
|