alsatian
Version:
TypeScript and JavaScript testing framework for beautiful and readable tests
13 lines (12 loc) • 1.67 kB
TypeScript
import { TestOutputStream, TestSet } from "./";
import { buildExpect, Expect, IExpect } from "./expect";
import { ContainerMatcher, EmptyMatcher, FunctionMatcher, FunctionSpyMatcher, Matcher, NumberMatcher, PropertyMatcher, StringMatcher } from "./matchers";
import { AsyncSetup, AsyncSetupFixture, AsyncTeardown, AsyncTeardownFixture, AsyncTest, Focus, FocusTest, FocusTests, Ignore, IgnoreTest, IgnoreTests, Setup, SetupFixture, Teardown, TeardownFixture, Test, TestCase, TestCases, TestFixture, Timeout } from "./decorators";
import { Any, createFunctionSpy, FunctionSpy, ISpiedFunction, RestorableFunctionSpy, SpyOn, SpyOnProperty } from "./spying";
import { TestCaseResult, TestFixtureResults, TestOutcome, TestResults, TestSetResults } from "./results";
import { MatchError, TestTimeoutError } from "./errors";
import * as METADATA_KEYS from "./decorators/_metadata-keys";
import { TestRunner } from "./running";
import { Logger } from "./maintenance/log";
declare const log: typeof Logger.log;
export { Any, AsyncSetup, AsyncSetupFixture, AsyncTeardown, AsyncTeardownFixture, AsyncTest, buildExpect, ContainerMatcher, EmptyMatcher, Expect, IExpect, Focus, FocusTest, FocusTests, FunctionMatcher, FunctionSpyMatcher, Ignore, IgnoreTest, IgnoreTests, log, Matcher, MatchError, METADATA_KEYS, NumberMatcher, PropertyMatcher, Setup, SetupFixture, ISpiedFunction, FunctionSpy, RestorableFunctionSpy, createFunctionSpy, SpyOn, SpyOnProperty, StringMatcher, Teardown, TeardownFixture, Test, TestCase, TestCases, TestCaseResult, TestFixture, TestFixtureResults, TestOutcome, TestOutputStream, TestResults, TestRunner, TestSetResults, TestSet, TestTimeoutError, Timeout };