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

Commit 51e4645

Browse files
eggerseddiemonge
authored andcommitted
fix(test): update assertFile syntax
Fix failing tests by updating the assertFile syntax from yeoman-generator Closes #554
1 parent a82da02 commit 51e4645

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/test-file-creation.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -209,9 +209,9 @@ describe('Angular generator', function () {
209209
});
210210
angular.run([], function (){
211211
angularView.run([], function () {
212-
helpers.assertFiles([
212+
helpers.assertFile(
213213
['app/views/foo.html']
214-
]);
214+
);
215215
done();
216216
});
217217
});
@@ -230,9 +230,9 @@ describe('Angular generator', function () {
230230
});
231231
angular.run([], function (){
232232
angularView.run([], function () {
233-
helpers.assertFiles([
233+
helpers.assertFile(
234234
['app/views/foo/bar.html']
235-
]);
235+
);
236236
done();
237237
});
238238
});

0 commit comments

Comments
 (0)