8 lines
147 B
TypeScript
8 lines
147 B
TypeScript
import { describe, it, expect } from 'vitest';
|
|
|
|
describe('scaffold', () => {
|
|
it('adds two numbers', () => {
|
|
expect(1 + 1).toBe(2);
|
|
});
|
|
});
|