mirror of
https://github.com/dorny/test-reporter.git
synced 2025-12-16 06:17:10 +01:00
10 lines
290 B
TypeScript
10 lines
290 B
TypeScript
import {Endpoints} from '@octokit/types'
|
|
|
|
type OutputParameters = Endpoints['POST /repos/:owner/:repo/check-runs']['parameters']['output']
|
|
|
|
export type ParseTestResult = (content: string) => Promise<TestResult>
|
|
|
|
export interface TestResult {
|
|
success: boolean
|
|
output: OutputParameters
|
|
}
|