alsatian
Version:
TypeScript and JavaScript testing framework for beautiful and readable tests
13 lines (12 loc) • 797 B
TypeScript
import { ContainerMatcher } from "./container-matcher";
import { EmptyMatcher } from "./empty-matcher";
import { FunctionMatcher } from "./function-matcher";
import { FunctionSpyCallCountMatcher } from "./function-spy-call-count-matcher";
import { FunctionSpyMatcher } from "./function-spy-matcher";
import { Matcher } from "./matcher";
import { NumberMatcher } from "./number-matcher";
import { PropertyMatcher } from "./property-matcher";
import { SpyCallCountType } from "./spy-call-count-type";
import { StringMatcher } from "./string-matcher";
import { ObjectMatcher } from "./object-matcher";
export { ContainerMatcher, EmptyMatcher, FunctionMatcher, FunctionSpyCallCountMatcher, FunctionSpyMatcher, Matcher, NumberMatcher, PropertyMatcher, SpyCallCountType, StringMatcher, ObjectMatcher };