7 lines
No EOL
146 B
TypeScript
7 lines
No EOL
146 B
TypeScript
import { describe, expect, test } from 'vitest';
|
|
|
|
describe('function()', async () => {
|
|
test('behavior', () => {
|
|
expect(1).toBe(1);
|
|
});
|
|
}); |