Files
ts-lib-boilerplate/tests/index.test.ts
2024-02-02 20:06:52 +01:00

7 lines
142 B
TypeScript

import { describe, it, expect } from 'vitest'
describe('index', () => {
it('should pass', () => {
expect(1 + 1).toBe(2)
})
})