We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b985a73 commit ff237fbCopy full SHA for ff237fb
tests/acceptance/init.spec.js
@@ -124,19 +124,22 @@ describe('Acceptance: ng init', function() {
124
});
125
126
it('init an already init\'d folder', function() {
127
+ return ng([
128
+ 'init',
129
+ '--skip-npm',
130
+ '--skip-bower'
131
+ ])
132
+ .then(function(){
133
+ Blueprint.ignoredFiles.push('favicon.ico');
134
+ })
135
+ .then(function() {
136
return ng([
- 'init',
- '--skip-npm',
- '--skip-bower'
- ])
- .then(function() {
- return ng([
137
- ]);
138
- })
139
- .then(confirmBlueprinted);
140
+ ]);
141
142
+ .then(confirmBlueprinted);
143
144
145
it('init a single file', function() {
0 commit comments