@angular-package/testing
Version:
Jasmine unit testing wrapper with additional custom testing features.
15 lines (14 loc) • 1.28 kB
TypeScript
export { Random } from "./random.class";
export { TestingExpectTo, TestingExpectToBe, TestingExpectToBeArrayOf, TestingExpectToBeInstanceOf, TestingExpectToHave, TestingExpectToHaveBeen, TestingExpectToHaveBeenCalled, TestingExpectToThrow, } from './expectation';
export { TestingItTo, TestingItToBe, TestingItToBeArrayOf, TestingItToBeBoolean, TestingItToBeInstanceOf, TestingItToHave, TestingItToHaveBeen, TestingItToHaveBeenCalled, TestingItToThrow, } from './it';
export { TestingTo, TestingToBe, TestingToBeArrayOf, TestingToBeBoolean, TestingToBeGreaterThan, TestingToBeInstanceOf, TestingToBeLessThan, TestingToBeNumber, TestingToBeObject, TestingToBeString, TestingToHave, TestingToThrow, } from './testing';
export { Testing } from './testing.class';
export { TestingActual } from './testing-actual.class';
export { TestingCustom } from './testing-custom.class';
export { TestingExpectation } from './testing-expectation.class';
export { TestingDescribe } from './testing-describe.class';
export { TestingIt } from './testing-it.class';
export { TestingCore } from './testing-core.abstract';
export { TestingCounter } from './testing-counter.abstract';
export { TestingExecutable } from './testing-executable.abstract';
export { TestingExpect } from './testing-expect.class';