@angular-package/testing
Version:
Jasmine unit testing wrapper with additional custom testing features.
14 lines (13 loc) • 817 B
TypeScript
import { TestingClass } from './class.const';
import { TestingObject } from '../../interface/object.interface';
export declare const TESTING_ARRAY_BIGINT: bigint[];
export declare const TESTING_ARRAY_BOOLEAN: (boolean | Boolean)[];
export declare const TESTING_ARRAY_CLASS: TestingClass[];
export declare const TESTING_ARRAY_FUNCTION: ((this: any, ...args: any[]) => any)[];
export declare const TESTING_ARRAY_NULL: null[];
export declare const TESTING_ARRAY_NUMBER: (number | Number)[];
export declare const TESTING_ARRAY_OBJECT_ONE: Array<TestingObject>;
export declare const TESTING_ARRAY_STRING: (string | String)[];
export declare const TESTING_ARRAY_SYMBOL_NUMBER: symbol[];
export declare const TESTING_ARRAY_SYMBOL_STRING: symbol[][];
export declare const TESTING_ARRAY_UNDEFINED: Array<undefined | unknown>;