create-admin-mvp 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +175 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +159 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +41 -0
- package/templates/admin-portal/ .stylelintrc.cjs +39 -0
- package/templates/admin-portal/.dockerignore +60 -0
- package/templates/admin-portal/.env +29 -0
- package/templates/admin-portal/.env.development +41 -0
- package/templates/admin-portal/.env.example +4 -0
- package/templates/admin-portal/.env.production +41 -0
- package/templates/admin-portal/.eslintrc.cjs +45 -0
- package/templates/admin-portal/.github/workflows/ci.yml +217 -0
- package/templates/admin-portal/.husky/commit-msg +11 -0
- package/templates/admin-portal/.husky/pre-commit +10 -0
- package/templates/admin-portal/.lintstagedrc.json +13 -0
- package/templates/admin-portal/.prettierrc.cjs +19 -0
- package/templates/admin-portal/.stylelintrc.cjs +35 -0
- package/templates/admin-portal/Dockerfile +35 -0
- package/templates/admin-portal/README.md +196 -0
- package/templates/admin-portal/commitlint.config.cjs +41 -0
- package/templates/admin-portal/docker-compose.yml +35 -0
- package/templates/admin-portal/index.html +13 -0
- package/templates/admin-portal/nginx.conf +45 -0
- package/templates/admin-portal/package-lock.json +10730 -0
- package/templates/admin-portal/package.json +62 -0
- package/templates/admin-portal/playwright-report/index.html +85 -0
- package/templates/admin-portal/playwright.config.ts +73 -0
- package/templates/admin-portal/pnpm-lock.yaml +1620 -0
- package/templates/admin-portal/postcss.config.cjs +56 -0
- package/templates/admin-portal/public/vite.svg +1 -0
- package/templates/admin-portal/src/App.vue +15 -0
- package/templates/admin-portal/src/assets/styles/main.css +36 -0
- package/templates/admin-portal/src/assets/vue.svg +1 -0
- package/templates/admin-portal/src/components/HelloWorld.vue +41 -0
- package/templates/admin-portal/src/layout/index.vue +23 -0
- package/templates/admin-portal/src/main.ts +12 -0
- package/templates/admin-portal/src/mock/auth.ts +26 -0
- package/templates/admin-portal/src/permission.ts +15 -0
- package/templates/admin-portal/src/router/index.ts +21 -0
- package/templates/admin-portal/src/style.css +79 -0
- package/templates/admin-portal/src/views/About.vue +15 -0
- package/templates/admin-portal/src/views/Home.vue +15 -0
- package/templates/admin-portal/src/views/login/index.vue +34 -0
- package/templates/admin-portal/test-results/.last-run.json +23 -0
- package/templates/admin-portal/test-results/results.json +882 -0
- package/templates/admin-portal/tests/e2e/example.spec.ts +52 -0
- package/templates/admin-portal/tests/unit/example.test.ts +49 -0
- package/templates/admin-portal/tsconfig.app.json +18 -0
- package/templates/admin-portal/tsconfig.json +7 -0
- package/templates/admin-portal/tsconfig.node.json +22 -0
- package/templates/admin-portal/vite.config.ts +21 -0
- package/templates/admin-portal/vitest.config.ts +49 -0
- package/templates/admin-portal/vitest.setup.ts +60 -0
|
@@ -0,0 +1,882 @@
|
|
|
1
|
+
{
|
|
2
|
+
"config": {
|
|
3
|
+
"configFile": "/Users/xuhuiping/admin-mvp/packages/cli/templates/admin-portal/playwright.config.ts",
|
|
4
|
+
"rootDir": "/Users/xuhuiping/admin-mvp/packages/cli/templates/admin-portal/tests/e2e",
|
|
5
|
+
"forbidOnly": false,
|
|
6
|
+
"fullyParallel": false,
|
|
7
|
+
"globalSetup": null,
|
|
8
|
+
"globalTeardown": null,
|
|
9
|
+
"globalTimeout": 0,
|
|
10
|
+
"grep": {},
|
|
11
|
+
"grepInvert": null,
|
|
12
|
+
"maxFailures": 0,
|
|
13
|
+
"metadata": {
|
|
14
|
+
"actualWorkers": 3
|
|
15
|
+
},
|
|
16
|
+
"preserveOutput": "always",
|
|
17
|
+
"projects": [
|
|
18
|
+
{
|
|
19
|
+
"outputDir": "/Users/xuhuiping/admin-mvp/packages/cli/templates/admin-portal/test-results",
|
|
20
|
+
"repeatEach": 1,
|
|
21
|
+
"retries": 0,
|
|
22
|
+
"metadata": {
|
|
23
|
+
"actualWorkers": 3
|
|
24
|
+
},
|
|
25
|
+
"id": "chromium",
|
|
26
|
+
"name": "chromium",
|
|
27
|
+
"testDir": "/Users/xuhuiping/admin-mvp/packages/cli/templates/admin-portal/tests/e2e",
|
|
28
|
+
"testIgnore": [],
|
|
29
|
+
"testMatch": [
|
|
30
|
+
"**/*.@(spec|test).?(c|m)[jt]s?(x)"
|
|
31
|
+
],
|
|
32
|
+
"timeout": 30000
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"outputDir": "/Users/xuhuiping/admin-mvp/packages/cli/templates/admin-portal/test-results",
|
|
36
|
+
"repeatEach": 1,
|
|
37
|
+
"retries": 0,
|
|
38
|
+
"metadata": {
|
|
39
|
+
"actualWorkers": 3
|
|
40
|
+
},
|
|
41
|
+
"id": "firefox",
|
|
42
|
+
"name": "firefox",
|
|
43
|
+
"testDir": "/Users/xuhuiping/admin-mvp/packages/cli/templates/admin-portal/tests/e2e",
|
|
44
|
+
"testIgnore": [],
|
|
45
|
+
"testMatch": [
|
|
46
|
+
"**/*.@(spec|test).?(c|m)[jt]s?(x)"
|
|
47
|
+
],
|
|
48
|
+
"timeout": 30000
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"outputDir": "/Users/xuhuiping/admin-mvp/packages/cli/templates/admin-portal/test-results",
|
|
52
|
+
"repeatEach": 1,
|
|
53
|
+
"retries": 0,
|
|
54
|
+
"metadata": {
|
|
55
|
+
"actualWorkers": 3
|
|
56
|
+
},
|
|
57
|
+
"id": "webkit",
|
|
58
|
+
"name": "webkit",
|
|
59
|
+
"testDir": "/Users/xuhuiping/admin-mvp/packages/cli/templates/admin-portal/tests/e2e",
|
|
60
|
+
"testIgnore": [],
|
|
61
|
+
"testMatch": [
|
|
62
|
+
"**/*.@(spec|test).?(c|m)[jt]s?(x)"
|
|
63
|
+
],
|
|
64
|
+
"timeout": 30000
|
|
65
|
+
}
|
|
66
|
+
],
|
|
67
|
+
"quiet": false,
|
|
68
|
+
"reporter": [
|
|
69
|
+
[
|
|
70
|
+
"html",
|
|
71
|
+
null
|
|
72
|
+
],
|
|
73
|
+
[
|
|
74
|
+
"json",
|
|
75
|
+
{
|
|
76
|
+
"outputFile": "test-results/results.json"
|
|
77
|
+
}
|
|
78
|
+
]
|
|
79
|
+
],
|
|
80
|
+
"reportSlowTests": {
|
|
81
|
+
"max": 5,
|
|
82
|
+
"threshold": 300000
|
|
83
|
+
},
|
|
84
|
+
"runAgents": "none",
|
|
85
|
+
"shard": null,
|
|
86
|
+
"tags": [],
|
|
87
|
+
"updateSnapshots": "missing",
|
|
88
|
+
"updateSourceMethod": "patch",
|
|
89
|
+
"version": "1.58.0",
|
|
90
|
+
"workers": 4,
|
|
91
|
+
"webServer": {
|
|
92
|
+
"command": "npm run dev",
|
|
93
|
+
"url": "http://localhost:5173",
|
|
94
|
+
"reuseExistingServer": true,
|
|
95
|
+
"timeout": 120000
|
|
96
|
+
}
|
|
97
|
+
},
|
|
98
|
+
"suites": [
|
|
99
|
+
{
|
|
100
|
+
"title": "example.spec.ts",
|
|
101
|
+
"file": "example.spec.ts",
|
|
102
|
+
"column": 0,
|
|
103
|
+
"line": 0,
|
|
104
|
+
"specs": [],
|
|
105
|
+
"suites": [
|
|
106
|
+
{
|
|
107
|
+
"title": "示例 E2E 测试",
|
|
108
|
+
"file": "example.spec.ts",
|
|
109
|
+
"line": 3,
|
|
110
|
+
"column": 6,
|
|
111
|
+
"specs": [
|
|
112
|
+
{
|
|
113
|
+
"title": "应该显示首页",
|
|
114
|
+
"ok": false,
|
|
115
|
+
"tags": [],
|
|
116
|
+
"tests": [
|
|
117
|
+
{
|
|
118
|
+
"timeout": 30000,
|
|
119
|
+
"annotations": [],
|
|
120
|
+
"expectedStatus": "passed",
|
|
121
|
+
"projectId": "chromium",
|
|
122
|
+
"projectName": "chromium",
|
|
123
|
+
"results": [
|
|
124
|
+
{
|
|
125
|
+
"workerIndex": 0,
|
|
126
|
+
"parallelIndex": 0,
|
|
127
|
+
"status": "failed",
|
|
128
|
+
"duration": 12,
|
|
129
|
+
"error": {
|
|
130
|
+
"message": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/chromium_headless_shell-1208/chrome-headless-shell-mac-arm64/chrome-headless-shell\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝",
|
|
131
|
+
"stack": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/chromium_headless_shell-1208/chrome-headless-shell-mac-arm64/chrome-headless-shell\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝"
|
|
132
|
+
},
|
|
133
|
+
"errors": [
|
|
134
|
+
{
|
|
135
|
+
"message": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/chromium_headless_shell-1208/chrome-headless-shell-mac-arm64/chrome-headless-shell\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝"
|
|
136
|
+
}
|
|
137
|
+
],
|
|
138
|
+
"stdout": [],
|
|
139
|
+
"stderr": [],
|
|
140
|
+
"retry": 0,
|
|
141
|
+
"startTime": "2026-01-25T22:21:07.172Z",
|
|
142
|
+
"annotations": [],
|
|
143
|
+
"attachments": []
|
|
144
|
+
}
|
|
145
|
+
],
|
|
146
|
+
"status": "unexpected"
|
|
147
|
+
}
|
|
148
|
+
],
|
|
149
|
+
"id": "a30a6eba6312f6b87ea5-fa16ec4464d78a46c0e3",
|
|
150
|
+
"file": "example.spec.ts",
|
|
151
|
+
"line": 8,
|
|
152
|
+
"column": 3
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"title": "应该导航到关于页面",
|
|
156
|
+
"ok": false,
|
|
157
|
+
"tags": [],
|
|
158
|
+
"tests": [
|
|
159
|
+
{
|
|
160
|
+
"timeout": 30000,
|
|
161
|
+
"annotations": [],
|
|
162
|
+
"expectedStatus": "passed",
|
|
163
|
+
"projectId": "chromium",
|
|
164
|
+
"projectName": "chromium",
|
|
165
|
+
"results": [
|
|
166
|
+
{
|
|
167
|
+
"workerIndex": 4,
|
|
168
|
+
"parallelIndex": 0,
|
|
169
|
+
"status": "failed",
|
|
170
|
+
"duration": 17,
|
|
171
|
+
"error": {
|
|
172
|
+
"message": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/chromium_headless_shell-1208/chrome-headless-shell-mac-arm64/chrome-headless-shell\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝",
|
|
173
|
+
"stack": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/chromium_headless_shell-1208/chrome-headless-shell-mac-arm64/chrome-headless-shell\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝"
|
|
174
|
+
},
|
|
175
|
+
"errors": [
|
|
176
|
+
{
|
|
177
|
+
"message": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/chromium_headless_shell-1208/chrome-headless-shell-mac-arm64/chrome-headless-shell\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝"
|
|
178
|
+
}
|
|
179
|
+
],
|
|
180
|
+
"stdout": [],
|
|
181
|
+
"stderr": [],
|
|
182
|
+
"retry": 0,
|
|
183
|
+
"startTime": "2026-01-25T22:21:09.065Z",
|
|
184
|
+
"annotations": [],
|
|
185
|
+
"attachments": []
|
|
186
|
+
}
|
|
187
|
+
],
|
|
188
|
+
"status": "unexpected"
|
|
189
|
+
}
|
|
190
|
+
],
|
|
191
|
+
"id": "a30a6eba6312f6b87ea5-b7b5d8f5bde06502d420",
|
|
192
|
+
"file": "example.spec.ts",
|
|
193
|
+
"line": 13,
|
|
194
|
+
"column": 3
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"title": "应该导航回首页",
|
|
198
|
+
"ok": false,
|
|
199
|
+
"tags": [],
|
|
200
|
+
"tests": [
|
|
201
|
+
{
|
|
202
|
+
"timeout": 30000,
|
|
203
|
+
"annotations": [],
|
|
204
|
+
"expectedStatus": "passed",
|
|
205
|
+
"projectId": "chromium",
|
|
206
|
+
"projectName": "chromium",
|
|
207
|
+
"results": [
|
|
208
|
+
{
|
|
209
|
+
"workerIndex": 7,
|
|
210
|
+
"parallelIndex": 0,
|
|
211
|
+
"status": "failed",
|
|
212
|
+
"duration": 10,
|
|
213
|
+
"error": {
|
|
214
|
+
"message": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/chromium_headless_shell-1208/chrome-headless-shell-mac-arm64/chrome-headless-shell\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝",
|
|
215
|
+
"stack": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/chromium_headless_shell-1208/chrome-headless-shell-mac-arm64/chrome-headless-shell\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝"
|
|
216
|
+
},
|
|
217
|
+
"errors": [
|
|
218
|
+
{
|
|
219
|
+
"message": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/chromium_headless_shell-1208/chrome-headless-shell-mac-arm64/chrome-headless-shell\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝"
|
|
220
|
+
}
|
|
221
|
+
],
|
|
222
|
+
"stdout": [],
|
|
223
|
+
"stderr": [],
|
|
224
|
+
"retry": 0,
|
|
225
|
+
"startTime": "2026-01-25T22:21:10.811Z",
|
|
226
|
+
"annotations": [],
|
|
227
|
+
"attachments": []
|
|
228
|
+
}
|
|
229
|
+
],
|
|
230
|
+
"status": "unexpected"
|
|
231
|
+
}
|
|
232
|
+
],
|
|
233
|
+
"id": "a30a6eba6312f6b87ea5-f8ffa1ecae4b7bbba524",
|
|
234
|
+
"file": "example.spec.ts",
|
|
235
|
+
"line": 19,
|
|
236
|
+
"column": 3
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
"title": "应该响应窗口大小变化",
|
|
240
|
+
"ok": false,
|
|
241
|
+
"tags": [],
|
|
242
|
+
"tests": [
|
|
243
|
+
{
|
|
244
|
+
"timeout": 30000,
|
|
245
|
+
"annotations": [],
|
|
246
|
+
"expectedStatus": "passed",
|
|
247
|
+
"projectId": "chromium",
|
|
248
|
+
"projectName": "chromium",
|
|
249
|
+
"results": [
|
|
250
|
+
{
|
|
251
|
+
"workerIndex": 9,
|
|
252
|
+
"parallelIndex": 0,
|
|
253
|
+
"status": "failed",
|
|
254
|
+
"duration": 9,
|
|
255
|
+
"error": {
|
|
256
|
+
"message": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/chromium_headless_shell-1208/chrome-headless-shell-mac-arm64/chrome-headless-shell\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝",
|
|
257
|
+
"stack": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/chromium_headless_shell-1208/chrome-headless-shell-mac-arm64/chrome-headless-shell\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝"
|
|
258
|
+
},
|
|
259
|
+
"errors": [
|
|
260
|
+
{
|
|
261
|
+
"message": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/chromium_headless_shell-1208/chrome-headless-shell-mac-arm64/chrome-headless-shell\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝"
|
|
262
|
+
}
|
|
263
|
+
],
|
|
264
|
+
"stdout": [],
|
|
265
|
+
"stderr": [],
|
|
266
|
+
"retry": 0,
|
|
267
|
+
"startTime": "2026-01-25T22:21:12.748Z",
|
|
268
|
+
"annotations": [],
|
|
269
|
+
"attachments": []
|
|
270
|
+
}
|
|
271
|
+
],
|
|
272
|
+
"status": "unexpected"
|
|
273
|
+
}
|
|
274
|
+
],
|
|
275
|
+
"id": "a30a6eba6312f6b87ea5-3557a571baf50abf4052",
|
|
276
|
+
"file": "example.spec.ts",
|
|
277
|
+
"line": 27,
|
|
278
|
+
"column": 3
|
|
279
|
+
},
|
|
280
|
+
{
|
|
281
|
+
"title": "应该支持浏览器导航",
|
|
282
|
+
"ok": false,
|
|
283
|
+
"tags": [],
|
|
284
|
+
"tests": [
|
|
285
|
+
{
|
|
286
|
+
"timeout": 30000,
|
|
287
|
+
"annotations": [],
|
|
288
|
+
"expectedStatus": "passed",
|
|
289
|
+
"projectId": "chromium",
|
|
290
|
+
"projectName": "chromium",
|
|
291
|
+
"results": [
|
|
292
|
+
{
|
|
293
|
+
"workerIndex": 14,
|
|
294
|
+
"parallelIndex": 0,
|
|
295
|
+
"status": "failed",
|
|
296
|
+
"duration": 4,
|
|
297
|
+
"error": {
|
|
298
|
+
"message": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/chromium_headless_shell-1208/chrome-headless-shell-mac-arm64/chrome-headless-shell\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝",
|
|
299
|
+
"stack": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/chromium_headless_shell-1208/chrome-headless-shell-mac-arm64/chrome-headless-shell\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝"
|
|
300
|
+
},
|
|
301
|
+
"errors": [
|
|
302
|
+
{
|
|
303
|
+
"message": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/chromium_headless_shell-1208/chrome-headless-shell-mac-arm64/chrome-headless-shell\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝"
|
|
304
|
+
}
|
|
305
|
+
],
|
|
306
|
+
"stdout": [],
|
|
307
|
+
"stderr": [],
|
|
308
|
+
"retry": 0,
|
|
309
|
+
"startTime": "2026-01-25T22:21:14.940Z",
|
|
310
|
+
"annotations": [],
|
|
311
|
+
"attachments": []
|
|
312
|
+
}
|
|
313
|
+
],
|
|
314
|
+
"status": "unexpected"
|
|
315
|
+
}
|
|
316
|
+
],
|
|
317
|
+
"id": "a30a6eba6312f6b87ea5-882c191ec598045d8e7d",
|
|
318
|
+
"file": "example.spec.ts",
|
|
319
|
+
"line": 35,
|
|
320
|
+
"column": 3
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
"title": "应该支持页面刷新",
|
|
324
|
+
"ok": false,
|
|
325
|
+
"tags": [],
|
|
326
|
+
"tests": [
|
|
327
|
+
{
|
|
328
|
+
"timeout": 30000,
|
|
329
|
+
"annotations": [],
|
|
330
|
+
"expectedStatus": "passed",
|
|
331
|
+
"projectId": "chromium",
|
|
332
|
+
"projectName": "chromium",
|
|
333
|
+
"results": [
|
|
334
|
+
{
|
|
335
|
+
"workerIndex": 15,
|
|
336
|
+
"parallelIndex": 0,
|
|
337
|
+
"status": "failed",
|
|
338
|
+
"duration": 4,
|
|
339
|
+
"error": {
|
|
340
|
+
"message": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/chromium_headless_shell-1208/chrome-headless-shell-mac-arm64/chrome-headless-shell\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝",
|
|
341
|
+
"stack": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/chromium_headless_shell-1208/chrome-headless-shell-mac-arm64/chrome-headless-shell\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝"
|
|
342
|
+
},
|
|
343
|
+
"errors": [
|
|
344
|
+
{
|
|
345
|
+
"message": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/chromium_headless_shell-1208/chrome-headless-shell-mac-arm64/chrome-headless-shell\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝"
|
|
346
|
+
}
|
|
347
|
+
],
|
|
348
|
+
"stdout": [],
|
|
349
|
+
"stderr": [],
|
|
350
|
+
"retry": 0,
|
|
351
|
+
"startTime": "2026-01-25T22:21:16.510Z",
|
|
352
|
+
"annotations": [],
|
|
353
|
+
"attachments": []
|
|
354
|
+
}
|
|
355
|
+
],
|
|
356
|
+
"status": "unexpected"
|
|
357
|
+
}
|
|
358
|
+
],
|
|
359
|
+
"id": "a30a6eba6312f6b87ea5-d3837c1e87e35186f0a8",
|
|
360
|
+
"file": "example.spec.ts",
|
|
361
|
+
"line": 46,
|
|
362
|
+
"column": 3
|
|
363
|
+
},
|
|
364
|
+
{
|
|
365
|
+
"title": "应该显示首页",
|
|
366
|
+
"ok": false,
|
|
367
|
+
"tags": [],
|
|
368
|
+
"tests": [
|
|
369
|
+
{
|
|
370
|
+
"timeout": 30000,
|
|
371
|
+
"annotations": [],
|
|
372
|
+
"expectedStatus": "passed",
|
|
373
|
+
"projectId": "firefox",
|
|
374
|
+
"projectName": "firefox",
|
|
375
|
+
"results": [
|
|
376
|
+
{
|
|
377
|
+
"workerIndex": 1,
|
|
378
|
+
"parallelIndex": 1,
|
|
379
|
+
"status": "failed",
|
|
380
|
+
"duration": 4,
|
|
381
|
+
"error": {
|
|
382
|
+
"message": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/firefox-1509/firefox/Nightly.app/Contents/MacOS/firefox\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝",
|
|
383
|
+
"stack": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/firefox-1509/firefox/Nightly.app/Contents/MacOS/firefox\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝"
|
|
384
|
+
},
|
|
385
|
+
"errors": [
|
|
386
|
+
{
|
|
387
|
+
"message": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/firefox-1509/firefox/Nightly.app/Contents/MacOS/firefox\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝"
|
|
388
|
+
}
|
|
389
|
+
],
|
|
390
|
+
"stdout": [],
|
|
391
|
+
"stderr": [],
|
|
392
|
+
"retry": 0,
|
|
393
|
+
"startTime": "2026-01-25T22:21:07.151Z",
|
|
394
|
+
"annotations": [],
|
|
395
|
+
"attachments": []
|
|
396
|
+
}
|
|
397
|
+
],
|
|
398
|
+
"status": "unexpected"
|
|
399
|
+
}
|
|
400
|
+
],
|
|
401
|
+
"id": "a30a6eba6312f6b87ea5-2bf6908e1ce54f0bb0a5",
|
|
402
|
+
"file": "example.spec.ts",
|
|
403
|
+
"line": 8,
|
|
404
|
+
"column": 3
|
|
405
|
+
},
|
|
406
|
+
{
|
|
407
|
+
"title": "应该导航到关于页面",
|
|
408
|
+
"ok": false,
|
|
409
|
+
"tags": [],
|
|
410
|
+
"tests": [
|
|
411
|
+
{
|
|
412
|
+
"timeout": 30000,
|
|
413
|
+
"annotations": [],
|
|
414
|
+
"expectedStatus": "passed",
|
|
415
|
+
"projectId": "firefox",
|
|
416
|
+
"projectName": "firefox",
|
|
417
|
+
"results": [
|
|
418
|
+
{
|
|
419
|
+
"workerIndex": 3,
|
|
420
|
+
"parallelIndex": 1,
|
|
421
|
+
"status": "failed",
|
|
422
|
+
"duration": 5,
|
|
423
|
+
"error": {
|
|
424
|
+
"message": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/firefox-1509/firefox/Nightly.app/Contents/MacOS/firefox\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝",
|
|
425
|
+
"stack": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/firefox-1509/firefox/Nightly.app/Contents/MacOS/firefox\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝"
|
|
426
|
+
},
|
|
427
|
+
"errors": [
|
|
428
|
+
{
|
|
429
|
+
"message": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/firefox-1509/firefox/Nightly.app/Contents/MacOS/firefox\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝"
|
|
430
|
+
}
|
|
431
|
+
],
|
|
432
|
+
"stdout": [],
|
|
433
|
+
"stderr": [],
|
|
434
|
+
"retry": 0,
|
|
435
|
+
"startTime": "2026-01-25T22:21:09.061Z",
|
|
436
|
+
"annotations": [],
|
|
437
|
+
"attachments": []
|
|
438
|
+
}
|
|
439
|
+
],
|
|
440
|
+
"status": "unexpected"
|
|
441
|
+
}
|
|
442
|
+
],
|
|
443
|
+
"id": "a30a6eba6312f6b87ea5-95ede7b2041b5b9684ef",
|
|
444
|
+
"file": "example.spec.ts",
|
|
445
|
+
"line": 13,
|
|
446
|
+
"column": 3
|
|
447
|
+
},
|
|
448
|
+
{
|
|
449
|
+
"title": "应该导航回首页",
|
|
450
|
+
"ok": false,
|
|
451
|
+
"tags": [],
|
|
452
|
+
"tests": [
|
|
453
|
+
{
|
|
454
|
+
"timeout": 30000,
|
|
455
|
+
"annotations": [],
|
|
456
|
+
"expectedStatus": "passed",
|
|
457
|
+
"projectId": "firefox",
|
|
458
|
+
"projectName": "firefox",
|
|
459
|
+
"results": [
|
|
460
|
+
{
|
|
461
|
+
"workerIndex": 6,
|
|
462
|
+
"parallelIndex": 1,
|
|
463
|
+
"status": "failed",
|
|
464
|
+
"duration": 6,
|
|
465
|
+
"error": {
|
|
466
|
+
"message": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/firefox-1509/firefox/Nightly.app/Contents/MacOS/firefox\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝",
|
|
467
|
+
"stack": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/firefox-1509/firefox/Nightly.app/Contents/MacOS/firefox\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝"
|
|
468
|
+
},
|
|
469
|
+
"errors": [
|
|
470
|
+
{
|
|
471
|
+
"message": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/firefox-1509/firefox/Nightly.app/Contents/MacOS/firefox\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝"
|
|
472
|
+
}
|
|
473
|
+
],
|
|
474
|
+
"stdout": [],
|
|
475
|
+
"stderr": [],
|
|
476
|
+
"retry": 0,
|
|
477
|
+
"startTime": "2026-01-25T22:21:10.827Z",
|
|
478
|
+
"annotations": [],
|
|
479
|
+
"attachments": []
|
|
480
|
+
}
|
|
481
|
+
],
|
|
482
|
+
"status": "unexpected"
|
|
483
|
+
}
|
|
484
|
+
],
|
|
485
|
+
"id": "a30a6eba6312f6b87ea5-de7c7c8d622c8bb693dc",
|
|
486
|
+
"file": "example.spec.ts",
|
|
487
|
+
"line": 19,
|
|
488
|
+
"column": 3
|
|
489
|
+
},
|
|
490
|
+
{
|
|
491
|
+
"title": "应该响应窗口大小变化",
|
|
492
|
+
"ok": false,
|
|
493
|
+
"tags": [],
|
|
494
|
+
"tests": [
|
|
495
|
+
{
|
|
496
|
+
"timeout": 30000,
|
|
497
|
+
"annotations": [],
|
|
498
|
+
"expectedStatus": "passed",
|
|
499
|
+
"projectId": "firefox",
|
|
500
|
+
"projectName": "firefox",
|
|
501
|
+
"results": [
|
|
502
|
+
{
|
|
503
|
+
"workerIndex": 11,
|
|
504
|
+
"parallelIndex": 1,
|
|
505
|
+
"status": "failed",
|
|
506
|
+
"duration": 7,
|
|
507
|
+
"error": {
|
|
508
|
+
"message": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/firefox-1509/firefox/Nightly.app/Contents/MacOS/firefox\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝",
|
|
509
|
+
"stack": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/firefox-1509/firefox/Nightly.app/Contents/MacOS/firefox\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝"
|
|
510
|
+
},
|
|
511
|
+
"errors": [
|
|
512
|
+
{
|
|
513
|
+
"message": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/firefox-1509/firefox/Nightly.app/Contents/MacOS/firefox\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝"
|
|
514
|
+
}
|
|
515
|
+
],
|
|
516
|
+
"stdout": [],
|
|
517
|
+
"stderr": [],
|
|
518
|
+
"retry": 0,
|
|
519
|
+
"startTime": "2026-01-25T22:21:12.738Z",
|
|
520
|
+
"annotations": [],
|
|
521
|
+
"attachments": []
|
|
522
|
+
}
|
|
523
|
+
],
|
|
524
|
+
"status": "unexpected"
|
|
525
|
+
}
|
|
526
|
+
],
|
|
527
|
+
"id": "a30a6eba6312f6b87ea5-9d0122a9ee5226062ae1",
|
|
528
|
+
"file": "example.spec.ts",
|
|
529
|
+
"line": 27,
|
|
530
|
+
"column": 3
|
|
531
|
+
},
|
|
532
|
+
{
|
|
533
|
+
"title": "应该支持浏览器导航",
|
|
534
|
+
"ok": false,
|
|
535
|
+
"tags": [],
|
|
536
|
+
"tests": [
|
|
537
|
+
{
|
|
538
|
+
"timeout": 30000,
|
|
539
|
+
"annotations": [],
|
|
540
|
+
"expectedStatus": "passed",
|
|
541
|
+
"projectId": "firefox",
|
|
542
|
+
"projectName": "firefox",
|
|
543
|
+
"results": [
|
|
544
|
+
{
|
|
545
|
+
"workerIndex": 13,
|
|
546
|
+
"parallelIndex": 1,
|
|
547
|
+
"status": "failed",
|
|
548
|
+
"duration": 4,
|
|
549
|
+
"error": {
|
|
550
|
+
"message": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/firefox-1509/firefox/Nightly.app/Contents/MacOS/firefox\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝",
|
|
551
|
+
"stack": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/firefox-1509/firefox/Nightly.app/Contents/MacOS/firefox\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝"
|
|
552
|
+
},
|
|
553
|
+
"errors": [
|
|
554
|
+
{
|
|
555
|
+
"message": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/firefox-1509/firefox/Nightly.app/Contents/MacOS/firefox\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝"
|
|
556
|
+
}
|
|
557
|
+
],
|
|
558
|
+
"stdout": [],
|
|
559
|
+
"stderr": [],
|
|
560
|
+
"retry": 0,
|
|
561
|
+
"startTime": "2026-01-25T22:21:14.970Z",
|
|
562
|
+
"annotations": [],
|
|
563
|
+
"attachments": []
|
|
564
|
+
}
|
|
565
|
+
],
|
|
566
|
+
"status": "unexpected"
|
|
567
|
+
}
|
|
568
|
+
],
|
|
569
|
+
"id": "a30a6eba6312f6b87ea5-f059b4fe8c0579a60336",
|
|
570
|
+
"file": "example.spec.ts",
|
|
571
|
+
"line": 35,
|
|
572
|
+
"column": 3
|
|
573
|
+
},
|
|
574
|
+
{
|
|
575
|
+
"title": "应该支持页面刷新",
|
|
576
|
+
"ok": false,
|
|
577
|
+
"tags": [],
|
|
578
|
+
"tests": [
|
|
579
|
+
{
|
|
580
|
+
"timeout": 30000,
|
|
581
|
+
"annotations": [],
|
|
582
|
+
"expectedStatus": "passed",
|
|
583
|
+
"projectId": "firefox",
|
|
584
|
+
"projectName": "firefox",
|
|
585
|
+
"results": [
|
|
586
|
+
{
|
|
587
|
+
"workerIndex": 17,
|
|
588
|
+
"parallelIndex": 1,
|
|
589
|
+
"status": "failed",
|
|
590
|
+
"duration": 4,
|
|
591
|
+
"error": {
|
|
592
|
+
"message": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/firefox-1509/firefox/Nightly.app/Contents/MacOS/firefox\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝",
|
|
593
|
+
"stack": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/firefox-1509/firefox/Nightly.app/Contents/MacOS/firefox\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝"
|
|
594
|
+
},
|
|
595
|
+
"errors": [
|
|
596
|
+
{
|
|
597
|
+
"message": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/firefox-1509/firefox/Nightly.app/Contents/MacOS/firefox\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝"
|
|
598
|
+
}
|
|
599
|
+
],
|
|
600
|
+
"stdout": [],
|
|
601
|
+
"stderr": [],
|
|
602
|
+
"retry": 0,
|
|
603
|
+
"startTime": "2026-01-25T22:21:16.505Z",
|
|
604
|
+
"annotations": [],
|
|
605
|
+
"attachments": []
|
|
606
|
+
}
|
|
607
|
+
],
|
|
608
|
+
"status": "unexpected"
|
|
609
|
+
}
|
|
610
|
+
],
|
|
611
|
+
"id": "a30a6eba6312f6b87ea5-5a5cbbdcbff1ff0ff143",
|
|
612
|
+
"file": "example.spec.ts",
|
|
613
|
+
"line": 46,
|
|
614
|
+
"column": 3
|
|
615
|
+
},
|
|
616
|
+
{
|
|
617
|
+
"title": "应该显示首页",
|
|
618
|
+
"ok": false,
|
|
619
|
+
"tags": [],
|
|
620
|
+
"tests": [
|
|
621
|
+
{
|
|
622
|
+
"timeout": 30000,
|
|
623
|
+
"annotations": [],
|
|
624
|
+
"expectedStatus": "passed",
|
|
625
|
+
"projectId": "webkit",
|
|
626
|
+
"projectName": "webkit",
|
|
627
|
+
"results": [
|
|
628
|
+
{
|
|
629
|
+
"workerIndex": 2,
|
|
630
|
+
"parallelIndex": 2,
|
|
631
|
+
"status": "failed",
|
|
632
|
+
"duration": 13,
|
|
633
|
+
"error": {
|
|
634
|
+
"message": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/webkit-2248/pw_run.sh\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝",
|
|
635
|
+
"stack": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/webkit-2248/pw_run.sh\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝"
|
|
636
|
+
},
|
|
637
|
+
"errors": [
|
|
638
|
+
{
|
|
639
|
+
"message": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/webkit-2248/pw_run.sh\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝"
|
|
640
|
+
}
|
|
641
|
+
],
|
|
642
|
+
"stdout": [],
|
|
643
|
+
"stderr": [],
|
|
644
|
+
"retry": 0,
|
|
645
|
+
"startTime": "2026-01-25T22:21:07.173Z",
|
|
646
|
+
"annotations": [],
|
|
647
|
+
"attachments": []
|
|
648
|
+
}
|
|
649
|
+
],
|
|
650
|
+
"status": "unexpected"
|
|
651
|
+
}
|
|
652
|
+
],
|
|
653
|
+
"id": "a30a6eba6312f6b87ea5-144df201d3eaf6de7c31",
|
|
654
|
+
"file": "example.spec.ts",
|
|
655
|
+
"line": 8,
|
|
656
|
+
"column": 3
|
|
657
|
+
},
|
|
658
|
+
{
|
|
659
|
+
"title": "应该导航到关于页面",
|
|
660
|
+
"ok": false,
|
|
661
|
+
"tags": [],
|
|
662
|
+
"tests": [
|
|
663
|
+
{
|
|
664
|
+
"timeout": 30000,
|
|
665
|
+
"annotations": [],
|
|
666
|
+
"expectedStatus": "passed",
|
|
667
|
+
"projectId": "webkit",
|
|
668
|
+
"projectName": "webkit",
|
|
669
|
+
"results": [
|
|
670
|
+
{
|
|
671
|
+
"workerIndex": 5,
|
|
672
|
+
"parallelIndex": 2,
|
|
673
|
+
"status": "failed",
|
|
674
|
+
"duration": 4,
|
|
675
|
+
"error": {
|
|
676
|
+
"message": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/webkit-2248/pw_run.sh\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝",
|
|
677
|
+
"stack": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/webkit-2248/pw_run.sh\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝"
|
|
678
|
+
},
|
|
679
|
+
"errors": [
|
|
680
|
+
{
|
|
681
|
+
"message": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/webkit-2248/pw_run.sh\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝"
|
|
682
|
+
}
|
|
683
|
+
],
|
|
684
|
+
"stdout": [],
|
|
685
|
+
"stderr": [],
|
|
686
|
+
"retry": 0,
|
|
687
|
+
"startTime": "2026-01-25T22:21:09.123Z",
|
|
688
|
+
"annotations": [],
|
|
689
|
+
"attachments": []
|
|
690
|
+
}
|
|
691
|
+
],
|
|
692
|
+
"status": "unexpected"
|
|
693
|
+
}
|
|
694
|
+
],
|
|
695
|
+
"id": "a30a6eba6312f6b87ea5-2b1ad10e38a921b63db0",
|
|
696
|
+
"file": "example.spec.ts",
|
|
697
|
+
"line": 13,
|
|
698
|
+
"column": 3
|
|
699
|
+
},
|
|
700
|
+
{
|
|
701
|
+
"title": "应该导航回首页",
|
|
702
|
+
"ok": false,
|
|
703
|
+
"tags": [],
|
|
704
|
+
"tests": [
|
|
705
|
+
{
|
|
706
|
+
"timeout": 30000,
|
|
707
|
+
"annotations": [],
|
|
708
|
+
"expectedStatus": "passed",
|
|
709
|
+
"projectId": "webkit",
|
|
710
|
+
"projectName": "webkit",
|
|
711
|
+
"results": [
|
|
712
|
+
{
|
|
713
|
+
"workerIndex": 8,
|
|
714
|
+
"parallelIndex": 2,
|
|
715
|
+
"status": "failed",
|
|
716
|
+
"duration": 4,
|
|
717
|
+
"error": {
|
|
718
|
+
"message": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/webkit-2248/pw_run.sh\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝",
|
|
719
|
+
"stack": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/webkit-2248/pw_run.sh\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝"
|
|
720
|
+
},
|
|
721
|
+
"errors": [
|
|
722
|
+
{
|
|
723
|
+
"message": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/webkit-2248/pw_run.sh\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝"
|
|
724
|
+
}
|
|
725
|
+
],
|
|
726
|
+
"stdout": [],
|
|
727
|
+
"stderr": [],
|
|
728
|
+
"retry": 0,
|
|
729
|
+
"startTime": "2026-01-25T22:21:10.830Z",
|
|
730
|
+
"annotations": [],
|
|
731
|
+
"attachments": []
|
|
732
|
+
}
|
|
733
|
+
],
|
|
734
|
+
"status": "unexpected"
|
|
735
|
+
}
|
|
736
|
+
],
|
|
737
|
+
"id": "a30a6eba6312f6b87ea5-8316adf1aaa206904998",
|
|
738
|
+
"file": "example.spec.ts",
|
|
739
|
+
"line": 19,
|
|
740
|
+
"column": 3
|
|
741
|
+
},
|
|
742
|
+
{
|
|
743
|
+
"title": "应该响应窗口大小变化",
|
|
744
|
+
"ok": false,
|
|
745
|
+
"tags": [],
|
|
746
|
+
"tests": [
|
|
747
|
+
{
|
|
748
|
+
"timeout": 30000,
|
|
749
|
+
"annotations": [],
|
|
750
|
+
"expectedStatus": "passed",
|
|
751
|
+
"projectId": "webkit",
|
|
752
|
+
"projectName": "webkit",
|
|
753
|
+
"results": [
|
|
754
|
+
{
|
|
755
|
+
"workerIndex": 10,
|
|
756
|
+
"parallelIndex": 2,
|
|
757
|
+
"status": "failed",
|
|
758
|
+
"duration": 8,
|
|
759
|
+
"error": {
|
|
760
|
+
"message": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/webkit-2248/pw_run.sh\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝",
|
|
761
|
+
"stack": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/webkit-2248/pw_run.sh\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝"
|
|
762
|
+
},
|
|
763
|
+
"errors": [
|
|
764
|
+
{
|
|
765
|
+
"message": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/webkit-2248/pw_run.sh\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝"
|
|
766
|
+
}
|
|
767
|
+
],
|
|
768
|
+
"stdout": [],
|
|
769
|
+
"stderr": [],
|
|
770
|
+
"retry": 0,
|
|
771
|
+
"startTime": "2026-01-25T22:21:12.740Z",
|
|
772
|
+
"annotations": [],
|
|
773
|
+
"attachments": []
|
|
774
|
+
}
|
|
775
|
+
],
|
|
776
|
+
"status": "unexpected"
|
|
777
|
+
}
|
|
778
|
+
],
|
|
779
|
+
"id": "a30a6eba6312f6b87ea5-e29a7150aece2d7b8b58",
|
|
780
|
+
"file": "example.spec.ts",
|
|
781
|
+
"line": 27,
|
|
782
|
+
"column": 3
|
|
783
|
+
},
|
|
784
|
+
{
|
|
785
|
+
"title": "应该支持浏览器导航",
|
|
786
|
+
"ok": false,
|
|
787
|
+
"tags": [],
|
|
788
|
+
"tests": [
|
|
789
|
+
{
|
|
790
|
+
"timeout": 30000,
|
|
791
|
+
"annotations": [],
|
|
792
|
+
"expectedStatus": "passed",
|
|
793
|
+
"projectId": "webkit",
|
|
794
|
+
"projectName": "webkit",
|
|
795
|
+
"results": [
|
|
796
|
+
{
|
|
797
|
+
"workerIndex": 12,
|
|
798
|
+
"parallelIndex": 2,
|
|
799
|
+
"status": "failed",
|
|
800
|
+
"duration": 4,
|
|
801
|
+
"error": {
|
|
802
|
+
"message": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/webkit-2248/pw_run.sh\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝",
|
|
803
|
+
"stack": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/webkit-2248/pw_run.sh\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝"
|
|
804
|
+
},
|
|
805
|
+
"errors": [
|
|
806
|
+
{
|
|
807
|
+
"message": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/webkit-2248/pw_run.sh\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝"
|
|
808
|
+
}
|
|
809
|
+
],
|
|
810
|
+
"stdout": [],
|
|
811
|
+
"stderr": [],
|
|
812
|
+
"retry": 0,
|
|
813
|
+
"startTime": "2026-01-25T22:21:14.942Z",
|
|
814
|
+
"annotations": [],
|
|
815
|
+
"attachments": []
|
|
816
|
+
}
|
|
817
|
+
],
|
|
818
|
+
"status": "unexpected"
|
|
819
|
+
}
|
|
820
|
+
],
|
|
821
|
+
"id": "a30a6eba6312f6b87ea5-8f8e04e9b23f1f70a6a5",
|
|
822
|
+
"file": "example.spec.ts",
|
|
823
|
+
"line": 35,
|
|
824
|
+
"column": 3
|
|
825
|
+
},
|
|
826
|
+
{
|
|
827
|
+
"title": "应该支持页面刷新",
|
|
828
|
+
"ok": false,
|
|
829
|
+
"tags": [],
|
|
830
|
+
"tests": [
|
|
831
|
+
{
|
|
832
|
+
"timeout": 30000,
|
|
833
|
+
"annotations": [],
|
|
834
|
+
"expectedStatus": "passed",
|
|
835
|
+
"projectId": "webkit",
|
|
836
|
+
"projectName": "webkit",
|
|
837
|
+
"results": [
|
|
838
|
+
{
|
|
839
|
+
"workerIndex": 16,
|
|
840
|
+
"parallelIndex": 2,
|
|
841
|
+
"status": "failed",
|
|
842
|
+
"duration": 5,
|
|
843
|
+
"error": {
|
|
844
|
+
"message": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/webkit-2248/pw_run.sh\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝",
|
|
845
|
+
"stack": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/webkit-2248/pw_run.sh\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝"
|
|
846
|
+
},
|
|
847
|
+
"errors": [
|
|
848
|
+
{
|
|
849
|
+
"message": "Error: browserType.launch: Executable doesn't exist at /Users/xuhuiping/Library/Caches/ms-playwright/webkit-2248/pw_run.sh\n╔═════════════════════════════════════════════════════════════════════════╗\n║ Looks like Playwright Test or Playwright was just installed or updated. ║\n║ Please run the following command to download new browsers: ║\n║ ║\n║ npx playwright install ║\n║ ║\n║ <3 Playwright Team ║\n╚═════════════════════════════════════════════════════════════════════════╝"
|
|
850
|
+
}
|
|
851
|
+
],
|
|
852
|
+
"stdout": [],
|
|
853
|
+
"stderr": [],
|
|
854
|
+
"retry": 0,
|
|
855
|
+
"startTime": "2026-01-25T22:21:16.504Z",
|
|
856
|
+
"annotations": [],
|
|
857
|
+
"attachments": []
|
|
858
|
+
}
|
|
859
|
+
],
|
|
860
|
+
"status": "unexpected"
|
|
861
|
+
}
|
|
862
|
+
],
|
|
863
|
+
"id": "a30a6eba6312f6b87ea5-558a5297e26c3cddfbf3",
|
|
864
|
+
"file": "example.spec.ts",
|
|
865
|
+
"line": 46,
|
|
866
|
+
"column": 3
|
|
867
|
+
}
|
|
868
|
+
]
|
|
869
|
+
}
|
|
870
|
+
]
|
|
871
|
+
}
|
|
872
|
+
],
|
|
873
|
+
"errors": [],
|
|
874
|
+
"stats": {
|
|
875
|
+
"startTime": "2026-01-25T22:21:05.286Z",
|
|
876
|
+
"duration": 11301.567,
|
|
877
|
+
"expected": 0,
|
|
878
|
+
"skipped": 0,
|
|
879
|
+
"unexpected": 18,
|
|
880
|
+
"flaky": 0
|
|
881
|
+
}
|
|
882
|
+
}
|