Fixed build

This commit is contained in:
Steve Gravrock
2017-12-01 08:34:12 -08:00
parent 98ead94c51
commit 2200dd084d
2 changed files with 109 additions and 113 deletions

View File

@@ -12,9 +12,9 @@ getJasmineRequireObj().SpyStrategy = function(j$) {
* @member
* @type {String}
*/
this.identity = options.name || 'unknown',
this.originalFn = options.fn || function() {},
this.getSpy = options.getSpy || function() {},
this.identity = options.name || 'unknown';
this.originalFn = options.fn || function() {};
this.getSpy = options.getSpy || function() {};
this.plan = function() {};
}