Skip to content

Commit d8548c6

Browse files
authoredJan 17, 2023
fix(ui): don't show "connecting" screen in html reporter (#2693)
1 parent 8a1d759 commit d8548c6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎packages/ui/client/composables/client/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ export function runCurrent() {
6666
watch(
6767
() => client.ws,
6868
(ws) => {
69-
status.value = 'CONNECTING'
69+
status.value = isReport ? 'OPEN' : 'CONNECTING'
7070

7171
ws.addEventListener('open', async () => {
7272
status.value = 'OPEN'

‎packages/ui/vite.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { presetAttributify, presetIcons, presetUno } from 'unocss'
1111
// for debug:
1212
// open a static file serve to share the report json
1313
// and ui using the link to load the report json data
14-
const debugLink = 'http://127.0.0.1:4173'
14+
const debugLink = 'http://127.0.0.1:4173/__vitest__'
1515

1616
export const config: UserConfig = {
1717
root: __dirname,

0 commit comments

Comments
 (0)
Please sign in to comment.