UNPKG

1.67 kBTypeScriptView Raw
1import { TestOutputStream, TestSet } from "./";
2import { buildExpect, Expect, IExpect } from "./expect";
3import { ContainerMatcher, EmptyMatcher, FunctionMatcher, FunctionSpyMatcher, Matcher, NumberMatcher, PropertyMatcher, StringMatcher } from "./matchers";
4import { AsyncSetup, AsyncSetupFixture, AsyncTeardown, AsyncTeardownFixture, AsyncTest, Focus, FocusTest, FocusTests, Ignore, IgnoreTest, IgnoreTests, Setup, SetupFixture, Teardown, TeardownFixture, Test, TestCase, TestCases, TestFixture, Timeout } from "./decorators";
5import { Any, createFunctionSpy, FunctionSpy, ISpiedFunction, RestorableFunctionSpy, SpyOn, SpyOnProperty } from "./spying";
6import { TestCaseResult, TestFixtureResults, TestOutcome, TestResults, TestSetResults } from "./results";
7import { MatchError, TestTimeoutError } from "./errors";
8import * as METADATA_KEYS from "./decorators/_metadata-keys";
9import { TestRunner } from "./running";
10import { Logger } from "./maintenance/log";
11declare const log: typeof Logger.log;
12export { 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 };