auth.andert.me/src/index.test.ts

8 lines
148 B
TypeScript
Raw Normal View History

2023-07-19 09:42:47 +00:00
import { describe, it, expect } from 'vitest';
describe('sum test', () => {
it('adds 1 + 2 to equal 3', () => {
expect(1 + 2).toBe(3);
});
});