6 lines
110 B
TypeScript
6 lines
110 B
TypeScript
|
|
import { describe, test } from 'vitest';
|
||
|
|
|
||
|
|
describe('a thing', () => {
|
||
|
|
test('does something', () => {});
|
||
|
|
});
|