cy-spok
Version:
Wrapper for spok assertion
26 lines (21 loc) • 549 B
TypeScript
import type {
SpokAssertions,
SpokConfig,
Specifications,
SpokFunctionAny,
Assert
} from 'spok/dist/types'
import { ExpectFn } from 'spok/dist/adapter-chai-expect'
declare type SpokFunction<Subject> = (currentSubject: Subject) => void
declare type SpokHelper<Subject = any> = (
specifications: Specifications<Subject>
) => SpokFunction<Subject>
declare const Spok: SpokHelper &
SpokAssertions &
SpokConfig & {
any: SpokFunctionAny
adapters: {
chaiExpect: (expectFn: ExpectFn<any>) => Assert
}
}
export = Spok