9 lines
129 B
TypeScript
9 lines
129 B
TypeScript
import { describe, it, expect } from 'vitest'
|
|
|
|
describe('math', () => {
|
|
it('adds', () => {
|
|
expect(1 + 1).toBe(2)
|
|
})
|
|
})
|
|
|
|
|