Skip to content

Commit 872502d

Browse files
committedOct 2, 2023
fix: playwright config timeout: 600000
1 parent f97fa4d commit 872502d

File tree

3 files changed

+185
-192
lines changed

3 files changed

+185
-192
lines changed
 

‎package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@
3737
"@sveltejs/adapter-vercel": "^3.0.3",
3838
"@sveltejs/kit": "^1.25.1",
3939
"@sveltejs/package": "2.2.2",
40-
"@typescript-eslint/eslint-plugin": "^6.7.3",
41-
"@typescript-eslint/parser": "^6.7.3",
40+
"@typescript-eslint/eslint-plugin": "^6.7.4",
41+
"@typescript-eslint/parser": "^6.7.4",
4242
"autoprefixer": "^10.4.16",
4343
"esbuild": "0.19.4",
4444
"eslint": "^8.50.0",
@@ -47,12 +47,12 @@
4747
"flowbite-svelte-icons": "^0.4.4",
4848
"mdsvex": "^0.11.0",
4949
"mdsvexamples": "^0.4.1",
50-
"postcss": "^8.4.30",
50+
"postcss": "^8.4.31",
5151
"postcss-load-config": "^4.0.1",
5252
"prettier": "^3.0.3",
5353
"prettier-plugin-svelte": "^3.0.3",
5454
"prism-themes": "^1.9.0",
55-
"publint": "^0.2.2",
55+
"publint": "^0.2.3",
5656
"svelte": "^4.2.1",
5757
"svelte-check": "^3.5.2",
5858
"svelte-lib-helpers": "^0.3.15",
@@ -64,7 +64,7 @@
6464
"tslib": "^2.6.2",
6565
"typescript": "^5.2.2",
6666
"vite": "^4.4.9",
67-
"vitest": "^0.34.5"
67+
"vitest": "^0.34.6"
6868
},
6969
"peerDependencies": {
7070
"svelte": "^4.0.0"
@@ -114,7 +114,7 @@
114114
},
115115
"dependencies": {
116116
"@floating-ui/dom": "^1.5.3",
117-
"apexcharts": "^3.42.0",
117+
"apexcharts": "^3.43.0",
118118
"flowbite": "^1.8.1",
119119
"tailwind-merge": "^1.14.0"
120120
},

‎playwright.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const config: PlaywrightTestConfig = {
55
workers: 4,
66
webServer: {
77
command: 'npm run build && npm run preview',
8-
timeout: 240000,
8+
timeout: 600000,
99
port: 4173
1010
}
1111
};

0 commit comments

Comments
 (0)