@@ -33,8 +33,9 @@ describe('Angular generator', function () {
3333
3434 it ( 'should generate dotfiles' , function ( done ) {
3535 helpers . mockPrompt ( angular , {
36+ compass : true ,
3637 bootstrap : true ,
37- compassBoostrap : true ,
38+ compassBootstrap : true ,
3839 modules : [ ]
3940 } ) ;
4041
@@ -49,7 +50,7 @@ describe('Angular generator', function () {
4950 'app/404.html' ,
5051 'app/favicon.ico' ,
5152 'app/robots.txt' ,
52- 'app/styles/main.css ' ,
53+ 'app/styles/main.scss ' ,
5354 'app/views/main.html' ,
5455 [ '.bowerrc' , / " d i r e c t o r y " : " a p p \/ b o w e r _ c o m p o n e n t s " / ] ,
5556 'Gruntfile.js' ,
@@ -61,8 +62,9 @@ describe('Angular generator', function () {
6162 'test/spec/controllers/main.js'
6263 ] ;
6364 helpers . mockPrompt ( angular , {
65+ compass : true ,
6466 bootstrap : true ,
65- compassBoostrap : true ,
67+ compassBootstrap : true ,
6668 modules : [ ]
6769 } ) ;
6870
@@ -77,7 +79,7 @@ describe('Angular generator', function () {
7779 'app/404.html' ,
7880 'app/favicon.ico' ,
7981 'app/robots.txt' ,
80- 'app/styles/main.css ' ,
82+ 'app/styles/main.scss ' ,
8183 'app/views/main.html' ,
8284 [ '.bowerrc' , / " d i r e c t o r y " : " a p p \/ b o w e r _ c o m p o n e n t s " / ] ,
8385 'Gruntfile.js' ,
@@ -89,8 +91,9 @@ describe('Angular generator', function () {
8991 'test/spec/controllers/main.coffee'
9092 ] ;
9193 helpers . mockPrompt ( angular , {
94+ compass : true ,
9295 bootstrap : true ,
93- compassBoostrap : true ,
96+ compassBootstrap : true ,
9497 modules : [ ]
9598 } ) ;
9699
@@ -132,8 +135,9 @@ describe('Angular generator', function () {
132135 angularGenerator = helpers . createGenerator ( 'angular:' + generatorType , deps , [ name ] ) ;
133136
134137 helpers . mockPrompt ( angular , {
138+ compass : true ,
135139 bootstrap : true ,
136- compassBoostrap : true ,
140+ compassBootstrap : true ,
137141 modules : [ ]
138142 } ) ;
139143 angular . run ( [ ] , function ( ) {
@@ -198,8 +202,9 @@ describe('Angular generator', function () {
198202 angularView = helpers . createGenerator ( 'angular:view' , deps , [ 'foo' ] ) ;
199203
200204 helpers . mockPrompt ( angular , {
205+ compass : true ,
201206 bootstrap : true ,
202- compassBoostrap : true ,
207+ compassBootstrap : true ,
203208 modules : [ ]
204209 } ) ;
205210 angular . run ( [ ] , function ( ) {
@@ -218,8 +223,9 @@ describe('Angular generator', function () {
218223 angularView = helpers . createGenerator ( 'angular:view' , deps , [ 'foo/bar' ] ) ;
219224
220225 helpers . mockPrompt ( angular , {
226+ compass : true ,
221227 bootstrap : true ,
222- compassBoostrap : true ,
228+ compassBootstrap : true ,
223229 modules : [ ]
224230 } ) ;
225231 angular . run ( [ ] , function ( ) {
0 commit comments