all files / core/ _decorators.ts

100% Statements 20/20
100% Branches 0/0
100% Functions 0/0
100% Lines 20/20
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24        
import { AsyncTest } from "./decorators/async-test-decorator";
import { FocusTest } from "./decorators/focus-test-decorator";
import { FocusTests } from "./decorators/focus-tests-decorator";
import { IgnoreTest } from "./decorators/ignore-test-decorator";
import { IgnoreTests } from "./decorators/ignore-tests-decorator";
import { Setup } from "./decorators/setup-decorator";
import { Teardown } from "./decorators/teardown-decorator";
import { Test } from "./decorators/test-decorator";
import { TestCase } from "./decorators/test-case-decorator";
import { Timeout } from "./decorators/timeout-decorator";
 
export {
    AsyncTest,
    FocusTest,
    FocusTests,
    IgnoreTest,
    IgnoreTests,
    Setup,
    Teardown,
    Test,
    TestCase,
    Timeout
};