We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c8eaec commit 8b820fbCopy full SHA for 8b820fb
test/test.spec.ts
@@ -13,11 +13,13 @@ import {
13
updateFile,
14
} from "./util";
15
16
+const TIMEOUT = 1000000;
17
+
18
beforeAll(async () => {
19
await preTest();
-}, 1000000);
20
+}, TIMEOUT);
21
-afterAll(postTest);
22
+afterAll(postTest, TIMEOUT);
23
24
describe("vite-plugin-vue2", () => {
25
describe("dev", () => {
@@ -34,11 +36,11 @@ export function declareTests(isBuild: boolean) {
34
36
35
37
38
page = await startServer(isBuild);
- });
39
+ }, TIMEOUT);
40
41
afterAll(async () => {
42
await killServer();
43
44
45
test("SFC <script setup>", async () => {
46
const el = (await page.$(".script-setup"))!;
0 commit comments