8 lines
137 B
TypeScript
8 lines
137 B
TypeScript
import { describe, expect, it } from 'vitest';
|
|
|
|
describe('Example', () => {
|
|
it('should pass', () => {
|
|
expect(1 + 1).toBe(2);
|
|
});
|
|
});
|