first commit

This commit is contained in:
Julien Calixte
2022-02-26 13:31:39 +01:00
commit d469314fc0
22 changed files with 3332 additions and 0 deletions

9
tests/example.spec.ts Normal file
View File

@@ -0,0 +1,9 @@
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!')
})
})