Skip to content

Commit

Permalink
chore: add missing test
Browse files Browse the repository at this point in the history
  • Loading branch information
antfu committed Jun 13, 2021
1 parent c5e2c6f commit eb5f12a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/playground/fs-serve/__tests__/fs-serve.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ if (!isBuild) {
test('unsafe fetch', async () => {
expect(await page.textContent('.unsafe-fetch')).toBe('')
})

test('nested entry', async () => {
expect(await page.textContent('.nested-entry')).toBe('foobar')
})
} else {
test('dummy test to make jest happy', async () => {
// Your test suite must contain at least one test.
Expand Down

0 comments on commit eb5f12a

Please sign in to comment.