musicle-svelte/src/demo.spec.ts

8 lines
148 B
TypeScript
Raw Normal View History

2024-12-26 18:49:41 +00:00
import { describe, it, expect } from 'vitest';
describe('sum test', () => {
it('adds 1 + 2 to equal 3', () => {
expect(1 + 2).toBe(3);
});
});