20 lines
387 B
TypeScript
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>
|
|
}
|