Trying to create a first e2e test in our project, and am getting GetPortError: Timeout waiting for port 59684 after 20 retries with 500ms interval when I run the test.
The test itself is fairly simple.
import { $fetch, setup } from '@nuxt/test-utils/e2e'
import { describe, expect, it } from 'vitest'
describe('Index page', async () => {
await setup()
it('should render', async () => {
const html = await $fetch('/')
expect(html).toContain('something')
})
})
I haven't been able to find helpful information online.
Has anyone ran into this issue before?