Skip to content

Commit

Permalink
fix: add dummy test
Browse files Browse the repository at this point in the history
  • Loading branch information
Rodrigo P committed Dec 27, 2023
1 parent cc34e74 commit 5048089
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions test/basic.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import { describe, it, expect } from 'vitest'
import { fileURLToPath } from 'node:url'
import { setup, $fetch } from '@nuxt/test-utils'

describe('ssr', async () => {
await setup({
rootDir: fileURLToPath(new URL('./fixtures/basic', import.meta.url)),
})

it('renders the index page', async () => {
// Make a better test
expect(true).toBe(true)
})
})

0 comments on commit 5048089

Please sign in to comment.