vitest/test/cli/fixtures/tty/example.test.ts
2024-04-26 15:43:27 +02:00

8 lines
162 B
TypeScript

import { expect, test } from 'vitest'
import { getHelloWorld } from './example'
test('getHello', async () => {
expect(getHelloWorld()).toBe('Hello world')
})