2020-05-25 10:07:38 +02:00

6 lines
141 B
TypeScript

describe('A basic test', (): void => {
it('to have something pass.', async (): Promise<void> => {
expect(true).toBeTruthy();
});
});