···3535 - name: Run unit tests
3636 run: npm run test
37373838- # - name: Run e2e tests
3939- # run: npm run test:e2e
3838+ - name: Run e2e tests
3939+ run: npm run test:e2e
···77export default defineConfig({
88 plugins: [handlebarsPlugin()],
99 test: {
1010+ // Dont run tests in parallel. This is to ensure the test server can start up.
1111+ // And that the port was not previously taken.
1212+ fileParallelism: false,
1013 include: ['test/e2e/**/*.spec.ts'],
1114 root: fileURLToPath(new URL('./', import.meta.url)),
1215 },