webring/test/index.spec.ts

7 lines
167 B
TypeScript

import { describe, it, expect } from 'vitest';
describe('Hello World worker', () => {
it('succeeds simple test', async () => {
expect(1 + 1).toBe(2);
});
});