7 lines
139 B
TypeScript
7 lines
139 B
TypeScript
import { it, expect, describe } from 'vitest'
|
|
|
|
describe('group', () => {
|
|
it('should', () => {
|
|
expect(1).toBeTruthy();
|
|
})
|
|
}) |