UNPKG

@angular-package/testing

Version:

Jasmine unit testing wrapper with additional custom testing features.

14 lines (13 loc) 482 B
import { TESTING_NUMBER } from '../lib/constants/number.const'; import { TESTING_STRING } from '../lib/constants/string.const'; import { TESTING_SYMBOL_NUMBER, TESTING_SYMBOL_STRING } from '../lib/constants/symbol.const'; export interface TestingObject { 'key as string'?: boolean; 1030405027?: string; 5?: string; [TESTING_NUMBER]?: string; [TESTING_STRING]?: string; [TESTING_SYMBOL_NUMBER]?: string; [TESTING_SYMBOL_STRING]?: number; x: number; }