Files
introduction-to-testing/examples/scratchpad/index.test.js
2024-09-29 12:57:06 -06:00

6 lines
107 B
JavaScript

import { test, expect } from 'vitest';
test('a super simple test', () => {
expect(true).toBe(true);
});