Skip to content

Commit

Permalink
chore(): fix test that had a syntax error for emulate task.
Browse files Browse the repository at this point in the history
  • Loading branch information
jthoms1 committed Jun 6, 2016
1 parent f36acef commit 1728ae0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/tasks/emulate.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ describe('emulate command', function() {
spyOn(cordovaUtils, 'execCordovaCommand').andReturn(Q(true));

emulate.run(null, argv, rawCliArguments).then(function() {
expect(cordovaUtils.setupLiveReload).toHaveBeenCalledWith(argv. appDirectory);
expect(cordovaUtils.setupLiveReload).toHaveBeenCalledWith(argv, appDirectory);
expect(cordovaUtils.execCordovaCommand).toHaveBeenCalledWith(
['emulate', 'android'], true, { blah: 'blah' });
done();
Expand Down

0 comments on commit 1728ae0

Please sign in to comment.