2020-06-05 11:28:28 +02:00

6 lines
140 B
TypeScript

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