Refactoring diagnostic tests in multiple files.
This commit is contained in:
9
server/lib/diagnostic/prosody.ts
Normal file
9
server/lib/diagnostic/prosody.ts
Normal file
@ -0,0 +1,9 @@
|
||||
import { newResult, TestResult } from './utils'
|
||||
|
||||
export async function diagProsody (test: string, _settingsManager: PluginSettingsManager): Promise<TestResult> {
|
||||
const result = newResult(test)
|
||||
result.ok = false
|
||||
result.label = 'Builtin Prosody and ConverseJS'
|
||||
result.messages.push('Not Implemented Yet')
|
||||
return result
|
||||
}
|
Reference in New Issue
Block a user