mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-22 17:47:53 +00:00
Add example use of karma (+ jasmine and chai)
This commit is contained in:
18
templates/Angular2Spa/ClientApp/tests/counter.ts
Normal file
18
templates/Angular2Spa/ClientApp/tests/counter.ts
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
import 'angular2-universal-polyfills';
|
||||||
|
import { assert } from 'chai';
|
||||||
|
import { Counter } from '../components/counter/counter';
|
||||||
|
|
||||||
|
describe('Counter component', () => {
|
||||||
|
it('should start with value 0', () => {
|
||||||
|
const instance = new Counter();
|
||||||
|
assert.equal(instance.currentCount, 0);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should increment the counter by 1 when requested', () => {
|
||||||
|
const instance = new Counter();
|
||||||
|
instance.incrementCounter();
|
||||||
|
assert.equal(instance.currentCount, 1);
|
||||||
|
instance.incrementCounter();
|
||||||
|
assert.equal(instance.currentCount, 2);
|
||||||
|
});
|
||||||
|
});
|
||||||
26
templates/Angular2Spa/karma.conf.js
Normal file
26
templates/Angular2Spa/karma.conf.js
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
module.exports = function(config) {
|
||||||
|
config.set({
|
||||||
|
frameworks: ['jasmine', 'chai'],
|
||||||
|
reporters: ['progress'],
|
||||||
|
logLevel: config.LOG_INFO,
|
||||||
|
browsers: ['Chrome'],
|
||||||
|
autoWatch: true,
|
||||||
|
autoWatchBatchDelay: 300,
|
||||||
|
|
||||||
|
files: [
|
||||||
|
// Note: you must have already run 'webpack --config webpack.config.vendor.js' for this file to exist
|
||||||
|
'./wwwroot/dist/vendor.js',
|
||||||
|
|
||||||
|
'./ClientApp/tests/*.ts',
|
||||||
|
'./ClientApp/tests/**/*.ts'
|
||||||
|
],
|
||||||
|
|
||||||
|
preprocessors: {
|
||||||
|
'./ClientApp/tests/*.ts': ['webpack'],
|
||||||
|
'./ClientApp/tests/**/*.ts': ['webpack']
|
||||||
|
},
|
||||||
|
|
||||||
|
webpack: require('./webpack.config.js'),
|
||||||
|
webpackMiddleware: { stats: 'errors-only' }
|
||||||
|
});
|
||||||
|
};
|
||||||
@@ -4,12 +4,19 @@
|
|||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"aspnet-webpack": "^1.0.6",
|
"aspnet-webpack": "^1.0.6",
|
||||||
"bootstrap": "^3.3.6",
|
"bootstrap": "^3.3.6",
|
||||||
|
"chai": "^3.5.0",
|
||||||
"css-loader": "^0.23.1",
|
"css-loader": "^0.23.1",
|
||||||
"expose-loader": "^0.7.1",
|
"expose-loader": "^0.7.1",
|
||||||
"extendify": "^1.0.0",
|
"extendify": "^1.0.0",
|
||||||
"extract-text-webpack-plugin": "^1.0.1",
|
"extract-text-webpack-plugin": "^1.0.1",
|
||||||
"file-loader": "^0.8.5",
|
"file-loader": "^0.8.5",
|
||||||
|
"jasmine-core": "^2.5.1",
|
||||||
"jquery": "^2.2.1",
|
"jquery": "^2.2.1",
|
||||||
|
"karma": "^1.2.0",
|
||||||
|
"karma-chai": "^0.1.0",
|
||||||
|
"karma-chrome-launcher": "^2.0.0",
|
||||||
|
"karma-jasmine": "^1.0.2",
|
||||||
|
"karma-webpack": "^1.8.0",
|
||||||
"raw-loader": "^0.5.1",
|
"raw-loader": "^0.5.1",
|
||||||
"style-loader": "^0.13.0",
|
"style-loader": "^0.13.0",
|
||||||
"ts-loader": "^0.8.1",
|
"ts-loader": "^0.8.1",
|
||||||
|
|||||||
@@ -10,6 +10,15 @@
|
|||||||
},
|
},
|
||||||
"es6-shim/es6-shim.d.ts": {
|
"es6-shim/es6-shim.d.ts": {
|
||||||
"commit": "c0d876601e0f8236fd6b57626eb62c4e485f1563"
|
"commit": "c0d876601e0f8236fd6b57626eb62c4e485f1563"
|
||||||
|
},
|
||||||
|
"chai/chai.d.ts": {
|
||||||
|
"commit": "15d88ee05780bd6bbc4e376c5202b160895017f5"
|
||||||
|
},
|
||||||
|
"assertion-error/assertion-error.d.ts": {
|
||||||
|
"commit": "15d88ee05780bd6bbc4e376c5202b160895017f5"
|
||||||
|
},
|
||||||
|
"jasmine/jasmine.d.ts": {
|
||||||
|
"commit": "15d88ee05780bd6bbc4e376c5202b160895017f5"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
15
templates/Angular2Spa/typings/assertion-error/assertion-error.d.ts
vendored
Normal file
15
templates/Angular2Spa/typings/assertion-error/assertion-error.d.ts
vendored
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
// Type definitions for assertion-error 1.0.0
|
||||||
|
// Project: https://github.com/chaijs/assertion-error
|
||||||
|
// Definitions by: Bart van der Schoor <https://github.com/Bartvds>
|
||||||
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||||
|
|
||||||
|
declare module 'assertion-error' {
|
||||||
|
class AssertionError implements Error {
|
||||||
|
constructor(message: string, props?: any, ssf?: Function);
|
||||||
|
name: string;
|
||||||
|
message: string;
|
||||||
|
showDiff: boolean;
|
||||||
|
stack: string;
|
||||||
|
}
|
||||||
|
export = AssertionError;
|
||||||
|
}
|
||||||
414
templates/Angular2Spa/typings/chai/chai.d.ts
vendored
Normal file
414
templates/Angular2Spa/typings/chai/chai.d.ts
vendored
Normal file
@@ -0,0 +1,414 @@
|
|||||||
|
// Type definitions for chai 3.4.0
|
||||||
|
// Project: http://chaijs.com/
|
||||||
|
// Definitions by: Jed Mao <https://github.com/jedmao/>,
|
||||||
|
// Bart van der Schoor <https://github.com/Bartvds>,
|
||||||
|
// Andrew Brown <https://github.com/AGBrown>,
|
||||||
|
// Olivier Chevet <https://github.com/olivr70>,
|
||||||
|
// Matt Wistrand <https://github.com/mwistrand>
|
||||||
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||||
|
|
||||||
|
// <reference path="../assertion-error/assertion-error.d.ts"/>
|
||||||
|
|
||||||
|
declare namespace Chai {
|
||||||
|
|
||||||
|
interface ChaiStatic {
|
||||||
|
expect: ExpectStatic;
|
||||||
|
should(): Should;
|
||||||
|
/**
|
||||||
|
* Provides a way to extend the internals of Chai
|
||||||
|
*/
|
||||||
|
use(fn: (chai: any, utils: any) => void): ChaiStatic;
|
||||||
|
assert: AssertStatic;
|
||||||
|
config: Config;
|
||||||
|
AssertionError: typeof AssertionError;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface ExpectStatic extends AssertionStatic {
|
||||||
|
fail(actual?: any, expected?: any, message?: string, operator?: string): void;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AssertStatic extends Assert {
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AssertionStatic {
|
||||||
|
(target: any, message?: string): Assertion;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface ShouldAssertion {
|
||||||
|
equal(value1: any, value2: any, message?: string): void;
|
||||||
|
Throw: ShouldThrow;
|
||||||
|
throw: ShouldThrow;
|
||||||
|
exist(value: any, message?: string): void;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Should extends ShouldAssertion {
|
||||||
|
not: ShouldAssertion;
|
||||||
|
fail(actual: any, expected: any, message?: string, operator?: string): void;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface ShouldThrow {
|
||||||
|
(actual: Function): void;
|
||||||
|
(actual: Function, expected: string|RegExp, message?: string): void;
|
||||||
|
(actual: Function, constructor: Error|Function, expected?: string|RegExp, message?: string): void;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Assertion extends LanguageChains, NumericComparison, TypeComparison {
|
||||||
|
not: Assertion;
|
||||||
|
deep: Deep;
|
||||||
|
any: KeyFilter;
|
||||||
|
all: KeyFilter;
|
||||||
|
a: TypeComparison;
|
||||||
|
an: TypeComparison;
|
||||||
|
include: Include;
|
||||||
|
includes: Include;
|
||||||
|
contain: Include;
|
||||||
|
contains: Include;
|
||||||
|
ok: Assertion;
|
||||||
|
true: Assertion;
|
||||||
|
false: Assertion;
|
||||||
|
null: Assertion;
|
||||||
|
undefined: Assertion;
|
||||||
|
NaN: Assertion;
|
||||||
|
exist: Assertion;
|
||||||
|
empty: Assertion;
|
||||||
|
arguments: Assertion;
|
||||||
|
Arguments: Assertion;
|
||||||
|
equal: Equal;
|
||||||
|
equals: Equal;
|
||||||
|
eq: Equal;
|
||||||
|
eql: Equal;
|
||||||
|
eqls: Equal;
|
||||||
|
property: Property;
|
||||||
|
ownProperty: OwnProperty;
|
||||||
|
haveOwnProperty: OwnProperty;
|
||||||
|
ownPropertyDescriptor: OwnPropertyDescriptor;
|
||||||
|
haveOwnPropertyDescriptor: OwnPropertyDescriptor;
|
||||||
|
length: Length;
|
||||||
|
lengthOf: Length;
|
||||||
|
match: Match;
|
||||||
|
matches: Match;
|
||||||
|
string(string: string, message?: string): Assertion;
|
||||||
|
keys: Keys;
|
||||||
|
key(string: string): Assertion;
|
||||||
|
throw: Throw;
|
||||||
|
throws: Throw;
|
||||||
|
Throw: Throw;
|
||||||
|
respondTo: RespondTo;
|
||||||
|
respondsTo: RespondTo;
|
||||||
|
itself: Assertion;
|
||||||
|
satisfy: Satisfy;
|
||||||
|
satisfies: Satisfy;
|
||||||
|
closeTo: CloseTo;
|
||||||
|
approximately: CloseTo;
|
||||||
|
members: Members;
|
||||||
|
increase: PropertyChange;
|
||||||
|
increases: PropertyChange;
|
||||||
|
decrease: PropertyChange;
|
||||||
|
decreases: PropertyChange;
|
||||||
|
change: PropertyChange;
|
||||||
|
changes: PropertyChange;
|
||||||
|
extensible: Assertion;
|
||||||
|
sealed: Assertion;
|
||||||
|
frozen: Assertion;
|
||||||
|
oneOf(list: any[], message?: string): Assertion;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface LanguageChains {
|
||||||
|
to: Assertion;
|
||||||
|
be: Assertion;
|
||||||
|
been: Assertion;
|
||||||
|
is: Assertion;
|
||||||
|
that: Assertion;
|
||||||
|
which: Assertion;
|
||||||
|
and: Assertion;
|
||||||
|
has: Assertion;
|
||||||
|
have: Assertion;
|
||||||
|
with: Assertion;
|
||||||
|
at: Assertion;
|
||||||
|
of: Assertion;
|
||||||
|
same: Assertion;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface NumericComparison {
|
||||||
|
above: NumberComparer;
|
||||||
|
gt: NumberComparer;
|
||||||
|
greaterThan: NumberComparer;
|
||||||
|
least: NumberComparer;
|
||||||
|
gte: NumberComparer;
|
||||||
|
below: NumberComparer;
|
||||||
|
lt: NumberComparer;
|
||||||
|
lessThan: NumberComparer;
|
||||||
|
most: NumberComparer;
|
||||||
|
lte: NumberComparer;
|
||||||
|
within(start: number, finish: number, message?: string): Assertion;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface NumberComparer {
|
||||||
|
(value: number, message?: string): Assertion;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface TypeComparison {
|
||||||
|
(type: string, message?: string): Assertion;
|
||||||
|
instanceof: InstanceOf;
|
||||||
|
instanceOf: InstanceOf;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface InstanceOf {
|
||||||
|
(constructor: Object, message?: string): Assertion;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface CloseTo {
|
||||||
|
(expected: number, delta: number, message?: string): Assertion;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Deep {
|
||||||
|
equal: Equal;
|
||||||
|
include: Include;
|
||||||
|
property: Property;
|
||||||
|
members: Members;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface KeyFilter {
|
||||||
|
keys: Keys;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Equal {
|
||||||
|
(value: any, message?: string): Assertion;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Property {
|
||||||
|
(name: string, value?: any, message?: string): Assertion;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface OwnProperty {
|
||||||
|
(name: string, message?: string): Assertion;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface OwnPropertyDescriptor {
|
||||||
|
(name: string, descriptor: PropertyDescriptor, message?: string): Assertion;
|
||||||
|
(name: string, message?: string): Assertion;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Length extends LanguageChains, NumericComparison {
|
||||||
|
(length: number, message?: string): Assertion;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Include {
|
||||||
|
(value: Object, message?: string): Assertion;
|
||||||
|
(value: string, message?: string): Assertion;
|
||||||
|
(value: number, message?: string): Assertion;
|
||||||
|
keys: Keys;
|
||||||
|
members: Members;
|
||||||
|
any: KeyFilter;
|
||||||
|
all: KeyFilter;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Match {
|
||||||
|
(regexp: RegExp|string, message?: string): Assertion;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Keys {
|
||||||
|
(...keys: string[]): Assertion;
|
||||||
|
(keys: any[]): Assertion;
|
||||||
|
(keys: Object): Assertion;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Throw {
|
||||||
|
(): Assertion;
|
||||||
|
(expected: string, message?: string): Assertion;
|
||||||
|
(expected: RegExp, message?: string): Assertion;
|
||||||
|
(constructor: Error, expected?: string, message?: string): Assertion;
|
||||||
|
(constructor: Error, expected?: RegExp, message?: string): Assertion;
|
||||||
|
(constructor: Function, expected?: string, message?: string): Assertion;
|
||||||
|
(constructor: Function, expected?: RegExp, message?: string): Assertion;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface RespondTo {
|
||||||
|
(method: string, message?: string): Assertion;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Satisfy {
|
||||||
|
(matcher: Function, message?: string): Assertion;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Members {
|
||||||
|
(set: any[], message?: string): Assertion;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface PropertyChange {
|
||||||
|
(object: Object, prop: string, msg?: string): Assertion;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Assert {
|
||||||
|
/**
|
||||||
|
* @param expression Expression to test for truthiness.
|
||||||
|
* @param message Message to display on error.
|
||||||
|
*/
|
||||||
|
(expression: any, message?: string): void;
|
||||||
|
|
||||||
|
fail(actual?: any, expected?: any, msg?: string, operator?: string): void;
|
||||||
|
|
||||||
|
ok(val: any, msg?: string): void;
|
||||||
|
isOk(val: any, msg?: string): void;
|
||||||
|
notOk(val: any, msg?: string): void;
|
||||||
|
isNotOk(val: any, msg?: string): void;
|
||||||
|
|
||||||
|
equal(act: any, exp: any, msg?: string): void;
|
||||||
|
notEqual(act: any, exp: any, msg?: string): void;
|
||||||
|
|
||||||
|
strictEqual(act: any, exp: any, msg?: string): void;
|
||||||
|
notStrictEqual(act: any, exp: any, msg?: string): void;
|
||||||
|
|
||||||
|
deepEqual(act: any, exp: any, msg?: string): void;
|
||||||
|
notDeepEqual(act: any, exp: any, msg?: string): void;
|
||||||
|
|
||||||
|
isTrue(val: any, msg?: string): void;
|
||||||
|
isFalse(val: any, msg?: string): void;
|
||||||
|
|
||||||
|
isNotTrue(val: any, msg?: string): void;
|
||||||
|
isNotFalse(val: any, msg?: string): void;
|
||||||
|
|
||||||
|
isNull(val: any, msg?: string): void;
|
||||||
|
isNotNull(val: any, msg?: string): void;
|
||||||
|
|
||||||
|
isUndefined(val: any, msg?: string): void;
|
||||||
|
isDefined(val: any, msg?: string): void;
|
||||||
|
|
||||||
|
isNaN(val: any, msg?: string): void;
|
||||||
|
isNotNaN(val: any, msg?: string): void;
|
||||||
|
|
||||||
|
isAbove(val: number, abv: number, msg?: string): void;
|
||||||
|
isBelow(val: number, blw: number, msg?: string): void;
|
||||||
|
|
||||||
|
isAtLeast(val: number, atlst: number, msg?: string): void;
|
||||||
|
isAtMost(val: number, atmst: number, msg?: string): void;
|
||||||
|
|
||||||
|
isFunction(val: any, msg?: string): void;
|
||||||
|
isNotFunction(val: any, msg?: string): void;
|
||||||
|
|
||||||
|
isObject(val: any, msg?: string): void;
|
||||||
|
isNotObject(val: any, msg?: string): void;
|
||||||
|
|
||||||
|
isArray(val: any, msg?: string): void;
|
||||||
|
isNotArray(val: any, msg?: string): void;
|
||||||
|
|
||||||
|
isString(val: any, msg?: string): void;
|
||||||
|
isNotString(val: any, msg?: string): void;
|
||||||
|
|
||||||
|
isNumber(val: any, msg?: string): void;
|
||||||
|
isNotNumber(val: any, msg?: string): void;
|
||||||
|
|
||||||
|
isBoolean(val: any, msg?: string): void;
|
||||||
|
isNotBoolean(val: any, msg?: string): void;
|
||||||
|
|
||||||
|
typeOf(val: any, type: string, msg?: string): void;
|
||||||
|
notTypeOf(val: any, type: string, msg?: string): void;
|
||||||
|
|
||||||
|
instanceOf(val: any, type: Function, msg?: string): void;
|
||||||
|
notInstanceOf(val: any, type: Function, msg?: string): void;
|
||||||
|
|
||||||
|
include(exp: string, inc: any, msg?: string): void;
|
||||||
|
include(exp: any[], inc: any, msg?: string): void;
|
||||||
|
|
||||||
|
notInclude(exp: string, inc: any, msg?: string): void;
|
||||||
|
notInclude(exp: any[], inc: any, msg?: string): void;
|
||||||
|
|
||||||
|
match(exp: any, re: RegExp, msg?: string): void;
|
||||||
|
notMatch(exp: any, re: RegExp, msg?: string): void;
|
||||||
|
|
||||||
|
property(obj: Object, prop: string, msg?: string): void;
|
||||||
|
notProperty(obj: Object, prop: string, msg?: string): void;
|
||||||
|
deepProperty(obj: Object, prop: string, msg?: string): void;
|
||||||
|
notDeepProperty(obj: Object, prop: string, msg?: string): void;
|
||||||
|
|
||||||
|
propertyVal(obj: Object, prop: string, val: any, msg?: string): void;
|
||||||
|
propertyNotVal(obj: Object, prop: string, val: any, msg?: string): void;
|
||||||
|
|
||||||
|
deepPropertyVal(obj: Object, prop: string, val: any, msg?: string): void;
|
||||||
|
deepPropertyNotVal(obj: Object, prop: string, val: any, msg?: string): void;
|
||||||
|
|
||||||
|
lengthOf(exp: any, len: number, msg?: string): void;
|
||||||
|
//alias frenzy
|
||||||
|
throw(fn: Function, msg?: string): void;
|
||||||
|
throw(fn: Function, regExp: RegExp): void;
|
||||||
|
throw(fn: Function, errType: Function, msg?: string): void;
|
||||||
|
throw(fn: Function, errType: Function, regExp: RegExp): void;
|
||||||
|
|
||||||
|
throws(fn: Function, msg?: string): void;
|
||||||
|
throws(fn: Function, regExp: RegExp): void;
|
||||||
|
throws(fn: Function, errType: Function, msg?: string): void;
|
||||||
|
throws(fn: Function, errType: Function, regExp: RegExp): void;
|
||||||
|
|
||||||
|
Throw(fn: Function, msg?: string): void;
|
||||||
|
Throw(fn: Function, regExp: RegExp): void;
|
||||||
|
Throw(fn: Function, errType: Function, msg?: string): void;
|
||||||
|
Throw(fn: Function, errType: Function, regExp: RegExp): void;
|
||||||
|
|
||||||
|
doesNotThrow(fn: Function, msg?: string): void;
|
||||||
|
doesNotThrow(fn: Function, regExp: RegExp): void;
|
||||||
|
doesNotThrow(fn: Function, errType: Function, msg?: string): void;
|
||||||
|
doesNotThrow(fn: Function, errType: Function, regExp: RegExp): void;
|
||||||
|
|
||||||
|
operator(val: any, operator: string, val2: any, msg?: string): void;
|
||||||
|
closeTo(act: number, exp: number, delta: number, msg?: string): void;
|
||||||
|
approximately(act: number, exp: number, delta: number, msg?: string): void;
|
||||||
|
|
||||||
|
sameMembers(set1: any[], set2: any[], msg?: string): void;
|
||||||
|
sameDeepMembers(set1: any[], set2: any[], msg?: string): void;
|
||||||
|
includeMembers(superset: any[], subset: any[], msg?: string): void;
|
||||||
|
|
||||||
|
ifError(val: any, msg?: string): void;
|
||||||
|
|
||||||
|
isExtensible(obj: {}, msg?: string): void;
|
||||||
|
extensible(obj: {}, msg?: string): void;
|
||||||
|
isNotExtensible(obj: {}, msg?: string): void;
|
||||||
|
notExtensible(obj: {}, msg?: string): void;
|
||||||
|
|
||||||
|
isSealed(obj: {}, msg?: string): void;
|
||||||
|
sealed(obj: {}, msg?: string): void;
|
||||||
|
isNotSealed(obj: {}, msg?: string): void;
|
||||||
|
notSealed(obj: {}, msg?: string): void;
|
||||||
|
|
||||||
|
isFrozen(obj: Object, msg?: string): void;
|
||||||
|
frozen(obj: Object, msg?: string): void;
|
||||||
|
isNotFrozen(obj: Object, msg?: string): void;
|
||||||
|
notFrozen(obj: Object, msg?: string): void;
|
||||||
|
|
||||||
|
oneOf(inList: any, list: any[], msg?: string): void;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Config {
|
||||||
|
/**
|
||||||
|
* Default: false
|
||||||
|
*/
|
||||||
|
includeStack: boolean;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Default: true
|
||||||
|
*/
|
||||||
|
showDiff: boolean;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Default: 40
|
||||||
|
*/
|
||||||
|
truncateThreshold: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
export class AssertionError {
|
||||||
|
constructor(message: string, _props?: any, ssf?: Function);
|
||||||
|
name: string;
|
||||||
|
message: string;
|
||||||
|
showDiff: boolean;
|
||||||
|
stack: string;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
declare var chai: Chai.ChaiStatic;
|
||||||
|
|
||||||
|
declare module "chai" {
|
||||||
|
export = chai;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Object {
|
||||||
|
should: Chai.Assertion;
|
||||||
|
}
|
||||||
508
templates/Angular2Spa/typings/jasmine/jasmine.d.ts
vendored
Normal file
508
templates/Angular2Spa/typings/jasmine/jasmine.d.ts
vendored
Normal file
@@ -0,0 +1,508 @@
|
|||||||
|
// Type definitions for Jasmine 2.2
|
||||||
|
// Project: http://jasmine.github.io/
|
||||||
|
// Definitions by: Boris Yankov <https://github.com/borisyankov/>, Theodore Brown <https://github.com/theodorejb>, David Pärsson <https://github.com/davidparsson/>
|
||||||
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||||
|
|
||||||
|
|
||||||
|
// For ddescribe / iit use : https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/karma-jasmine/karma-jasmine.d.ts
|
||||||
|
|
||||||
|
declare function describe(description: string, specDefinitions: () => void): void;
|
||||||
|
declare function fdescribe(description: string, specDefinitions: () => void): void;
|
||||||
|
declare function xdescribe(description: string, specDefinitions: () => void): void;
|
||||||
|
|
||||||
|
declare function it(expectation: string, assertion?: () => void, timeout?: number): void;
|
||||||
|
declare function it(expectation: string, assertion?: (done: DoneFn) => void, timeout?: number): void;
|
||||||
|
declare function fit(expectation: string, assertion?: () => void, timeout?: number): void;
|
||||||
|
declare function fit(expectation: string, assertion?: (done: DoneFn) => void, timeout?: number): void;
|
||||||
|
declare function xit(expectation: string, assertion?: () => void, timeout?: number): void;
|
||||||
|
declare function xit(expectation: string, assertion?: (done: DoneFn) => void, timeout?: number): void;
|
||||||
|
|
||||||
|
/** If you call the function pending anywhere in the spec body, no matter the expectations, the spec will be marked pending. */
|
||||||
|
declare function pending(reason?: string): void;
|
||||||
|
|
||||||
|
declare function beforeEach(action: () => void, timeout?: number): void;
|
||||||
|
declare function beforeEach(action: (done: DoneFn) => void, timeout?: number): void;
|
||||||
|
declare function afterEach(action: () => void, timeout?: number): void;
|
||||||
|
declare function afterEach(action: (done: DoneFn) => void, timeout?: number): void;
|
||||||
|
|
||||||
|
declare function beforeAll(action: () => void, timeout?: number): void;
|
||||||
|
declare function beforeAll(action: (done: DoneFn) => void, timeout?: number): void;
|
||||||
|
declare function afterAll(action: () => void, timeout?: number): void;
|
||||||
|
declare function afterAll(action: (done: DoneFn) => void, timeout?: number): void;
|
||||||
|
|
||||||
|
declare function expect(spy: Function): jasmine.Matchers;
|
||||||
|
declare function expect(actual: any): jasmine.Matchers;
|
||||||
|
|
||||||
|
declare function fail(e?: any): void;
|
||||||
|
/** Action method that should be called when the async work is complete */
|
||||||
|
interface DoneFn extends Function {
|
||||||
|
(): void;
|
||||||
|
|
||||||
|
/** fails the spec and indicates that it has completed. If the message is an Error, Error.message is used */
|
||||||
|
fail: (message?: Error|string) => void;
|
||||||
|
}
|
||||||
|
|
||||||
|
declare function spyOn(object: any, method: string): jasmine.Spy;
|
||||||
|
|
||||||
|
declare function runs(asyncMethod: Function): void;
|
||||||
|
declare function waitsFor(latchMethod: () => boolean, failureMessage?: string, timeout?: number): void;
|
||||||
|
declare function waits(timeout?: number): void;
|
||||||
|
|
||||||
|
declare namespace jasmine {
|
||||||
|
|
||||||
|
var clock: () => Clock;
|
||||||
|
|
||||||
|
function any(aclass: any): Any;
|
||||||
|
function anything(): Any;
|
||||||
|
function arrayContaining(sample: any[]): ArrayContaining;
|
||||||
|
function objectContaining(sample: any): ObjectContaining;
|
||||||
|
function createSpy(name: string, originalFn?: Function): Spy;
|
||||||
|
function createSpyObj(baseName: string, methodNames: any[]): any;
|
||||||
|
function createSpyObj<T>(baseName: string, methodNames: any[]): T;
|
||||||
|
function pp(value: any): string;
|
||||||
|
function getEnv(): Env;
|
||||||
|
function addCustomEqualityTester(equalityTester: CustomEqualityTester): void;
|
||||||
|
function addMatchers(matchers: CustomMatcherFactories): void;
|
||||||
|
function stringMatching(str: string): Any;
|
||||||
|
function stringMatching(str: RegExp): Any;
|
||||||
|
|
||||||
|
interface Any {
|
||||||
|
|
||||||
|
new (expectedClass: any): any;
|
||||||
|
|
||||||
|
jasmineMatches(other: any): boolean;
|
||||||
|
jasmineToString(): string;
|
||||||
|
}
|
||||||
|
|
||||||
|
// taken from TypeScript lib.core.es6.d.ts, applicable to CustomMatchers.contains()
|
||||||
|
interface ArrayLike<T> {
|
||||||
|
length: number;
|
||||||
|
[n: number]: T;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface ArrayContaining {
|
||||||
|
new (sample: any[]): any;
|
||||||
|
|
||||||
|
asymmetricMatch(other: any): boolean;
|
||||||
|
jasmineToString(): string;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface ObjectContaining {
|
||||||
|
new (sample: any): any;
|
||||||
|
|
||||||
|
jasmineMatches(other: any, mismatchKeys: any[], mismatchValues: any[]): boolean;
|
||||||
|
jasmineToString(): string;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Block {
|
||||||
|
|
||||||
|
new (env: Env, func: SpecFunction, spec: Spec): any;
|
||||||
|
|
||||||
|
execute(onComplete: () => void): void;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface WaitsBlock extends Block {
|
||||||
|
new (env: Env, timeout: number, spec: Spec): any;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface WaitsForBlock extends Block {
|
||||||
|
new (env: Env, timeout: number, latchFunction: SpecFunction, message: string, spec: Spec): any;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Clock {
|
||||||
|
install(): void;
|
||||||
|
uninstall(): void;
|
||||||
|
/** Calls to any registered callback are triggered when the clock is ticked forward via the jasmine.clock().tick function, which takes a number of milliseconds. */
|
||||||
|
tick(ms: number): void;
|
||||||
|
mockDate(date?: Date): void;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface CustomEqualityTester {
|
||||||
|
(first: any, second: any): boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface CustomMatcher {
|
||||||
|
compare<T>(actual: T, expected: T): CustomMatcherResult;
|
||||||
|
compare(actual: any, expected: any): CustomMatcherResult;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface CustomMatcherFactory {
|
||||||
|
(util: MatchersUtil, customEqualityTesters: Array<CustomEqualityTester>): CustomMatcher;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface CustomMatcherFactories {
|
||||||
|
[index: string]: CustomMatcherFactory;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface CustomMatcherResult {
|
||||||
|
pass: boolean;
|
||||||
|
message?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface MatchersUtil {
|
||||||
|
equals(a: any, b: any, customTesters?: Array<CustomEqualityTester>): boolean;
|
||||||
|
contains<T>(haystack: ArrayLike<T> | string, needle: any, customTesters?: Array<CustomEqualityTester>): boolean;
|
||||||
|
buildFailureMessage(matcherName: string, isNot: boolean, actual: any, ...expected: Array<any>): string;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Env {
|
||||||
|
setTimeout: any;
|
||||||
|
clearTimeout: void;
|
||||||
|
setInterval: any;
|
||||||
|
clearInterval: void;
|
||||||
|
updateInterval: number;
|
||||||
|
|
||||||
|
currentSpec: Spec;
|
||||||
|
|
||||||
|
matchersClass: Matchers;
|
||||||
|
|
||||||
|
version(): any;
|
||||||
|
versionString(): string;
|
||||||
|
nextSpecId(): number;
|
||||||
|
addReporter(reporter: Reporter): void;
|
||||||
|
execute(): void;
|
||||||
|
describe(description: string, specDefinitions: () => void): Suite;
|
||||||
|
// ddescribe(description: string, specDefinitions: () => void): Suite; Not a part of jasmine. Angular team adds these
|
||||||
|
beforeEach(beforeEachFunction: () => void): void;
|
||||||
|
beforeAll(beforeAllFunction: () => void): void;
|
||||||
|
currentRunner(): Runner;
|
||||||
|
afterEach(afterEachFunction: () => void): void;
|
||||||
|
afterAll(afterAllFunction: () => void): void;
|
||||||
|
xdescribe(desc: string, specDefinitions: () => void): XSuite;
|
||||||
|
it(description: string, func: () => void): Spec;
|
||||||
|
// iit(description: string, func: () => void): Spec; Not a part of jasmine. Angular team adds these
|
||||||
|
xit(desc: string, func: () => void): XSpec;
|
||||||
|
compareRegExps_(a: RegExp, b: RegExp, mismatchKeys: string[], mismatchValues: string[]): boolean;
|
||||||
|
compareObjects_(a: any, b: any, mismatchKeys: string[], mismatchValues: string[]): boolean;
|
||||||
|
equals_(a: any, b: any, mismatchKeys: string[], mismatchValues: string[]): boolean;
|
||||||
|
contains_(haystack: any, needle: any): boolean;
|
||||||
|
addCustomEqualityTester(equalityTester: CustomEqualityTester): void;
|
||||||
|
addMatchers(matchers: CustomMatcherFactories): void;
|
||||||
|
specFilter(spec: Spec): boolean;
|
||||||
|
throwOnExpectationFailure(value: boolean): void;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface FakeTimer {
|
||||||
|
|
||||||
|
new (): any;
|
||||||
|
|
||||||
|
reset(): void;
|
||||||
|
tick(millis: number): void;
|
||||||
|
runFunctionsWithinRange(oldMillis: number, nowMillis: number): void;
|
||||||
|
scheduleFunction(timeoutKey: any, funcToCall: () => void, millis: number, recurring: boolean): void;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface HtmlReporter {
|
||||||
|
new (): any;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface HtmlSpecFilter {
|
||||||
|
new (): any;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Result {
|
||||||
|
type: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface NestedResults extends Result {
|
||||||
|
description: string;
|
||||||
|
|
||||||
|
totalCount: number;
|
||||||
|
passedCount: number;
|
||||||
|
failedCount: number;
|
||||||
|
|
||||||
|
skipped: boolean;
|
||||||
|
|
||||||
|
rollupCounts(result: NestedResults): void;
|
||||||
|
log(values: any): void;
|
||||||
|
getItems(): Result[];
|
||||||
|
addResult(result: Result): void;
|
||||||
|
passed(): boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface MessageResult extends Result {
|
||||||
|
values: any;
|
||||||
|
trace: Trace;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface ExpectationResult extends Result {
|
||||||
|
matcherName: string;
|
||||||
|
passed(): boolean;
|
||||||
|
expected: any;
|
||||||
|
actual: any;
|
||||||
|
message: string;
|
||||||
|
trace: Trace;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Trace {
|
||||||
|
name: string;
|
||||||
|
message: string;
|
||||||
|
stack: any;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface PrettyPrinter {
|
||||||
|
|
||||||
|
new (): any;
|
||||||
|
|
||||||
|
format(value: any): void;
|
||||||
|
iterateObject(obj: any, fn: (property: string, isGetter: boolean) => void): void;
|
||||||
|
emitScalar(value: any): void;
|
||||||
|
emitString(value: string): void;
|
||||||
|
emitArray(array: any[]): void;
|
||||||
|
emitObject(obj: any): void;
|
||||||
|
append(value: any): void;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface StringPrettyPrinter extends PrettyPrinter {
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Queue {
|
||||||
|
|
||||||
|
new (env: any): any;
|
||||||
|
|
||||||
|
env: Env;
|
||||||
|
ensured: boolean[];
|
||||||
|
blocks: Block[];
|
||||||
|
running: boolean;
|
||||||
|
index: number;
|
||||||
|
offset: number;
|
||||||
|
abort: boolean;
|
||||||
|
|
||||||
|
addBefore(block: Block, ensure?: boolean): void;
|
||||||
|
add(block: any, ensure?: boolean): void;
|
||||||
|
insertNext(block: any, ensure?: boolean): void;
|
||||||
|
start(onComplete?: () => void): void;
|
||||||
|
isRunning(): boolean;
|
||||||
|
next_(): void;
|
||||||
|
results(): NestedResults;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Matchers {
|
||||||
|
|
||||||
|
new (env: Env, actual: any, spec: Env, isNot?: boolean): any;
|
||||||
|
|
||||||
|
env: Env;
|
||||||
|
actual: any;
|
||||||
|
spec: Env;
|
||||||
|
isNot?: boolean;
|
||||||
|
message(): any;
|
||||||
|
|
||||||
|
toBe(expected: any, expectationFailOutput?: any): boolean;
|
||||||
|
toEqual(expected: any, expectationFailOutput?: any): boolean;
|
||||||
|
toMatch(expected: string | RegExp, expectationFailOutput?: any): boolean;
|
||||||
|
toBeDefined(expectationFailOutput?: any): boolean;
|
||||||
|
toBeUndefined(expectationFailOutput?: any): boolean;
|
||||||
|
toBeNull(expectationFailOutput?: any): boolean;
|
||||||
|
toBeNaN(): boolean;
|
||||||
|
toBeTruthy(expectationFailOutput?: any): boolean;
|
||||||
|
toBeFalsy(expectationFailOutput?: any): boolean;
|
||||||
|
toHaveBeenCalled(): boolean;
|
||||||
|
toHaveBeenCalledWith(...params: any[]): boolean;
|
||||||
|
toHaveBeenCalledTimes(expected: number): boolean;
|
||||||
|
toContain(expected: any, expectationFailOutput?: any): boolean;
|
||||||
|
toBeLessThan(expected: number, expectationFailOutput?: any): boolean;
|
||||||
|
toBeGreaterThan(expected: number, expectationFailOutput?: any): boolean;
|
||||||
|
toBeCloseTo(expected: number, precision?: any, expectationFailOutput?: any): boolean;
|
||||||
|
toThrow(expected?: any): boolean;
|
||||||
|
toThrowError(message?: string | RegExp): boolean;
|
||||||
|
toThrowError(expected?: new (...args: any[]) => Error, message?: string | RegExp): boolean;
|
||||||
|
not: Matchers;
|
||||||
|
|
||||||
|
Any: Any;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Reporter {
|
||||||
|
reportRunnerStarting(runner: Runner): void;
|
||||||
|
reportRunnerResults(runner: Runner): void;
|
||||||
|
reportSuiteResults(suite: Suite): void;
|
||||||
|
reportSpecStarting(spec: Spec): void;
|
||||||
|
reportSpecResults(spec: Spec): void;
|
||||||
|
log(str: string): void;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface MultiReporter extends Reporter {
|
||||||
|
addReporter(reporter: Reporter): void;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Runner {
|
||||||
|
|
||||||
|
new (env: Env): any;
|
||||||
|
|
||||||
|
execute(): void;
|
||||||
|
beforeEach(beforeEachFunction: SpecFunction): void;
|
||||||
|
afterEach(afterEachFunction: SpecFunction): void;
|
||||||
|
beforeAll(beforeAllFunction: SpecFunction): void;
|
||||||
|
afterAll(afterAllFunction: SpecFunction): void;
|
||||||
|
finishCallback(): void;
|
||||||
|
addSuite(suite: Suite): void;
|
||||||
|
add(block: Block): void;
|
||||||
|
specs(): Spec[];
|
||||||
|
suites(): Suite[];
|
||||||
|
topLevelSuites(): Suite[];
|
||||||
|
results(): NestedResults;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface SpecFunction {
|
||||||
|
(spec?: Spec): void;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface SuiteOrSpec {
|
||||||
|
id: number;
|
||||||
|
env: Env;
|
||||||
|
description: string;
|
||||||
|
queue: Queue;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Spec extends SuiteOrSpec {
|
||||||
|
|
||||||
|
new (env: Env, suite: Suite, description: string): any;
|
||||||
|
|
||||||
|
suite: Suite;
|
||||||
|
|
||||||
|
afterCallbacks: SpecFunction[];
|
||||||
|
spies_: Spy[];
|
||||||
|
|
||||||
|
results_: NestedResults;
|
||||||
|
matchersClass: Matchers;
|
||||||
|
|
||||||
|
getFullName(): string;
|
||||||
|
results(): NestedResults;
|
||||||
|
log(arguments: any): any;
|
||||||
|
runs(func: SpecFunction): Spec;
|
||||||
|
addToQueue(block: Block): void;
|
||||||
|
addMatcherResult(result: Result): void;
|
||||||
|
expect(actual: any): any;
|
||||||
|
waits(timeout: number): Spec;
|
||||||
|
waitsFor(latchFunction: SpecFunction, timeoutMessage?: string, timeout?: number): Spec;
|
||||||
|
fail(e?: any): void;
|
||||||
|
getMatchersClass_(): Matchers;
|
||||||
|
addMatchers(matchersPrototype: CustomMatcherFactories): void;
|
||||||
|
finishCallback(): void;
|
||||||
|
finish(onComplete?: () => void): void;
|
||||||
|
after(doAfter: SpecFunction): void;
|
||||||
|
execute(onComplete?: () => void): any;
|
||||||
|
addBeforesAndAftersToQueue(): void;
|
||||||
|
explodes(): void;
|
||||||
|
spyOn(obj: any, methodName: string, ignoreMethodDoesntExist: boolean): Spy;
|
||||||
|
removeAllSpies(): void;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface XSpec {
|
||||||
|
id: number;
|
||||||
|
runs(): void;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Suite extends SuiteOrSpec {
|
||||||
|
|
||||||
|
new (env: Env, description: string, specDefinitions: () => void, parentSuite: Suite): any;
|
||||||
|
|
||||||
|
parentSuite: Suite;
|
||||||
|
|
||||||
|
getFullName(): string;
|
||||||
|
finish(onComplete?: () => void): void;
|
||||||
|
beforeEach(beforeEachFunction: SpecFunction): void;
|
||||||
|
afterEach(afterEachFunction: SpecFunction): void;
|
||||||
|
beforeAll(beforeAllFunction: SpecFunction): void;
|
||||||
|
afterAll(afterAllFunction: SpecFunction): void;
|
||||||
|
results(): NestedResults;
|
||||||
|
add(suiteOrSpec: SuiteOrSpec): void;
|
||||||
|
specs(): Spec[];
|
||||||
|
suites(): Suite[];
|
||||||
|
children(): any[];
|
||||||
|
execute(onComplete?: () => void): void;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface XSuite {
|
||||||
|
execute(): void;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Spy {
|
||||||
|
(...params: any[]): any;
|
||||||
|
|
||||||
|
identity: string;
|
||||||
|
and: SpyAnd;
|
||||||
|
calls: Calls;
|
||||||
|
mostRecentCall: { args: any[]; };
|
||||||
|
argsForCall: any[];
|
||||||
|
wasCalled: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface SpyAnd {
|
||||||
|
/** By chaining the spy with and.callThrough, the spy will still track all calls to it but in addition it will delegate to the actual implementation. */
|
||||||
|
callThrough(): Spy;
|
||||||
|
/** By chaining the spy with and.returnValue, all calls to the function will return a specific value. */
|
||||||
|
returnValue(val: any): Spy;
|
||||||
|
/** By chaining the spy with and.returnValues, all calls to the function will return specific values in order until it reaches the end of the return values list. */
|
||||||
|
returnValues(...values: any[]): Spy;
|
||||||
|
/** By chaining the spy with and.callFake, all calls to the spy will delegate to the supplied function. */
|
||||||
|
callFake(fn: Function): Spy;
|
||||||
|
/** By chaining the spy with and.throwError, all calls to the spy will throw the specified value. */
|
||||||
|
throwError(msg: string): Spy;
|
||||||
|
/** When a calling strategy is used for a spy, the original stubbing behavior can be returned at any time with and.stub. */
|
||||||
|
stub(): Spy;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Calls {
|
||||||
|
/** By chaining the spy with calls.any(), will return false if the spy has not been called at all, and then true once at least one call happens. **/
|
||||||
|
any(): boolean;
|
||||||
|
/** By chaining the spy with calls.count(), will return the number of times the spy was called **/
|
||||||
|
count(): number;
|
||||||
|
/** By chaining the spy with calls.argsFor(), will return the arguments passed to call number index **/
|
||||||
|
argsFor(index: number): any[];
|
||||||
|
/** By chaining the spy with calls.allArgs(), will return the arguments to all calls **/
|
||||||
|
allArgs(): any[];
|
||||||
|
/** By chaining the spy with calls.all(), will return the context (the this) and arguments passed all calls **/
|
||||||
|
all(): CallInfo[];
|
||||||
|
/** By chaining the spy with calls.mostRecent(), will return the context (the this) and arguments for the most recent call **/
|
||||||
|
mostRecent(): CallInfo;
|
||||||
|
/** By chaining the spy with calls.first(), will return the context (the this) and arguments for the first call **/
|
||||||
|
first(): CallInfo;
|
||||||
|
/** By chaining the spy with calls.reset(), will clears all tracking for a spy **/
|
||||||
|
reset(): void;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface CallInfo {
|
||||||
|
/** The context (the this) for the call */
|
||||||
|
object: any;
|
||||||
|
/** All arguments passed to the call */
|
||||||
|
args: any[];
|
||||||
|
/** The return value of the call */
|
||||||
|
returnValue: any;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Util {
|
||||||
|
inherit(childClass: Function, parentClass: Function): any;
|
||||||
|
formatException(e: any): any;
|
||||||
|
htmlEscape(str: string): string;
|
||||||
|
argsToArray(args: any): any;
|
||||||
|
extend(destination: any, source: any): any;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface JsApiReporter extends Reporter {
|
||||||
|
|
||||||
|
started: boolean;
|
||||||
|
finished: boolean;
|
||||||
|
result: any;
|
||||||
|
messages: any;
|
||||||
|
|
||||||
|
new (): any;
|
||||||
|
|
||||||
|
suites(): Suite[];
|
||||||
|
summarize_(suiteOrSpec: SuiteOrSpec): any;
|
||||||
|
results(): any;
|
||||||
|
resultsForSpec(specId: any): any;
|
||||||
|
log(str: any): any;
|
||||||
|
resultsForSpecs(specIds: any): any;
|
||||||
|
summarizeResult_(result: any): any;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Jasmine {
|
||||||
|
Spec: Spec;
|
||||||
|
clock: Clock;
|
||||||
|
util: Util;
|
||||||
|
}
|
||||||
|
|
||||||
|
export var HtmlReporter: HtmlReporter;
|
||||||
|
export var HtmlSpecFilter: HtmlSpecFilter;
|
||||||
|
export var DEFAULT_TIMEOUT_INTERVAL: number;
|
||||||
|
}
|
||||||
3
templates/Angular2Spa/typings/tsd.d.ts
vendored
3
templates/Angular2Spa/typings/tsd.d.ts
vendored
@@ -1,3 +1,6 @@
|
|||||||
|
|
||||||
/// <reference path="requirejs/require.d.ts" />
|
/// <reference path="requirejs/require.d.ts" />
|
||||||
/// <reference path="es6-shim/es6-shim.d.ts" />
|
/// <reference path="es6-shim/es6-shim.d.ts" />
|
||||||
|
/// <reference path="assertion-error/assertion-error.d.ts" />
|
||||||
|
/// <reference path="chai/chai.d.ts" />
|
||||||
|
/// <reference path="jasmine/jasmine.d.ts" />
|
||||||
|
|||||||
Reference in New Issue
Block a user