WIP on Prosody diagnostic.
This commit is contained in:
@ -3,6 +3,10 @@ type nextValue = 'backend' | 'webchat-video' | 'webchat-type' | 'prosody' | 'con
|
||||
export interface TestResult {
|
||||
label?: string
|
||||
messages: string[]
|
||||
debug: Array<{
|
||||
title: string
|
||||
message: string
|
||||
}>
|
||||
next: nextValue | null
|
||||
ok: boolean
|
||||
test: string
|
||||
@ -13,6 +17,7 @@ export function newResult (test: string): TestResult {
|
||||
test: test,
|
||||
ok: false,
|
||||
messages: [],
|
||||
debug: [],
|
||||
next: null
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user