8 lines
158 B
TypeScript
8 lines
158 B
TypeScript
|
|
import { describe, it, expect } from 'vitest';
|
||
|
|
|
||
|
|
describe('vitest canary', () => {
|
||
|
|
it('arithmetic still works', () => {
|
||
|
|
expect(1 + 1).toBe(2);
|
||
|
|
});
|
||
|
|
});
|