Skip to content
This repository has been archived by the owner on Mar 26, 2018. It is now read-only.

Commit

Permalink
fix(test): update assertFile syntax
Browse files Browse the repository at this point in the history
Fix failing tests by updating the assertFile syntax from
yeoman-generator

Closes #554
  • Loading branch information
eggers authored and eddiemonge committed Jan 27, 2014
1 parent a82da02 commit 51e4645
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/test-file-creation.js
Original file line number Diff line number Diff line change
Expand Up @@ -209,9 +209,9 @@ describe('Angular generator', function () {
});
angular.run([], function (){
angularView.run([], function () {
helpers.assertFiles([
helpers.assertFile(
['app/views/foo.html']
]);
);
done();
});
});
Expand All @@ -230,9 +230,9 @@ describe('Angular generator', function () {
});
angular.run([], function (){
angularView.run([], function () {
helpers.assertFiles([
helpers.assertFile(
['app/views/foo/bar.html']
]);
);
done();
});
});
Expand Down

0 comments on commit 51e4645

Please sign in to comment.