Files
2026-07-13 13:34:48 +08:00

20 lines
387 B
TypeScript

import { Logger } from '@bpinternal/log4bot'
export type TestProps = {
logger: Logger
tmpDir: string
workspaceId: string
workspaceHandle: string
token: string
apiUrl: string
tunnelUrl: string
dependencies: Record<string, string | undefined>
sdkPath?: string
clientPath?: string
}
export type Test = {
name: string
handler: (props: TestProps) => Promise<void>
}