UNPKG

archunit

Version:

ArchUnit TypeScript is an architecture testing library, to specify and assert architecture rules in your TypeScript app

9 lines (8 loc) 287 B
import { CheckOptions } from '../../common/fluentapi'; import { TestResult } from '../common/result-factory'; declare global { interface VitestAssertion { toPassAsync(options?: CheckOptions): Promise<TestResult>; } } export declare function extendVitestMatchers(): void;