8 lines
167 B
TypeScript
8 lines
167 B
TypeScript
![]() |
import { describe, it, expect } from 'vitest';
|
||
|
|
||
|
describe('Hello World worker', () => {
|
||
|
it('succeeds simple test', async () => {
|
||
|
expect(1 + 1).toBe(2);
|
||
|
});
|
||
|
});
|