alsatian
Version:
TypeScript and JavaScript testing framework for beautiful and readable tests
22 lines (21 loc) • 1.32 kB
TypeScript
import { AsyncSetup } from "./async-setup-decorator";
import { AsyncSetupFixture } from "./async-setup-fixture-decorator";
import { AsyncTeardown } from "./async-teardown-decorator";
import { AsyncTeardownFixture } from "./async-teardown-fixture-decorator";
import { AsyncTest } from "./async-test-decorator";
import { Focus } from "./focus-decorator";
import { FocusTest } from "./focus-test-decorator";
import { FocusTests } from "./focus-tests-decorator";
import { Ignore } from "./ignore-decorator";
import { IgnoreTest } from "./ignore-test-decorator";
import { IgnoreTests } from "./ignore-tests-decorator";
import { Setup } from "./setup-decorator";
import { SetupFixture } from "./setup-fixture-decorator";
import { Teardown } from "./teardown-decorator";
import { TeardownFixture } from "./teardown-fixture-decorator";
import { TestCase } from "./test-case-decorator";
import { TestCases } from "./test-cases-decorator";
import { Test } from "./test-decorator";
import { TestFixture } from "./test-fixture-decorator";
import { Timeout } from "./timeout-decorator";
export { AsyncSetup, AsyncSetupFixture, AsyncTeardown, AsyncTeardownFixture, AsyncTest, Focus, FocusTest, FocusTests, Ignore, IgnoreTest, IgnoreTests, Setup, SetupFixture, Teardown, TeardownFixture, TestFixture, Test, TestCase, TestCases, Timeout };