From 1af5ade39af1f5f33fae607bbf89851d155c8dcf Mon Sep 17 00:00:00 2001 From: Joe Bowser Date: Mon, 28 Nov 2016 14:12:25 -0800 Subject: [PATCH] Adding isClean to the spec, this really should have failed a few commits ago This closes #349 --- spec/unit/Api.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/unit/Api.spec.js b/spec/unit/Api.spec.js index ab9479e8..2f29c0e1 100644 --- a/spec/unit/Api.spec.js +++ b/spec/unit/Api.spec.js @@ -42,7 +42,7 @@ describe('addPlugin method', function () { pluginManager.addPlugin.andReturn(Q()); spyOn(common.PluginManager, 'get').andReturn(pluginManager); - var projectSpy = jasmine.createSpyObj('AndroidProject', ['getPackageName', 'write']); + var projectSpy = jasmine.createSpyObj('AndroidProject', ['getPackageName', 'write', 'isClean']); spyOn(AndroidProject, 'getProjectFile').andReturn(projectSpy); oldClean = Api.__get__('Api.prototype.clean');