Files
apoena/tests/example.spec.ts
Julien Calixte d469314fc0 first commit
2022-02-26 13:31:39 +01:00

10 lines
219 B
TypeScript

import { test, describe, expect } from 'vitest'
import Index from '../src/pages/index.mdx'
describe('example test', () => {
test('stub default layout', () => {
expect(Index.title).toEqual('You did it!')
})
})