mirror of
https://github.com/SrIzan10/ts-lib-boilerplate.git
synced 2026-06-06 01:06:57 +00:00
7 lines
142 B
TypeScript
7 lines
142 B
TypeScript
import { describe, it, expect } from 'vitest'
|
|
|
|
describe('index', () => {
|
|
it('should pass', () => {
|
|
expect(1 + 1).toBe(2)
|
|
})
|
|
}) |