@@ -93,9 +93,7 @@ describe('Blueprint: route', function () {
93
93
94
94
expect ( _file ( 'app/templates/child.hbs' ) ) . to . equal ( '{{page-title "Child"}}\n{{outlet}}' ) ;
95
95
96
- expect ( _file ( 'tests/unit/routes/child-test.js' ) ) . to . equal (
97
- fixture ( 'route-test/child.js' )
98
- ) ;
96
+ expect ( _file ( 'tests/unit/routes/child-test.js' ) ) . to . equal ( fixture ( 'route-test/child.js' ) ) ;
99
97
100
98
expect ( file ( 'app/router.js' ) )
101
99
. to . contain ( "this.route('parent', {" )
@@ -113,9 +111,7 @@ describe('Blueprint: route', function () {
113
111
114
112
expect ( _file ( 'app/child/template.hbs' ) ) . to . equal ( '{{page-title "Child"}}\n{{outlet}}' ) ;
115
113
116
- expect ( _file ( 'tests/unit/child/route-test.js' ) ) . to . equal (
117
- fixture ( 'route-test/child.js' )
118
- ) ;
114
+ expect ( _file ( 'tests/unit/child/route-test.js' ) ) . to . equal ( fixture ( 'route-test/child.js' ) ) ;
119
115
120
116
expect ( file ( 'app/router.js' ) )
121
117
. to . contain ( "this.route('parent', {" )
@@ -334,7 +330,9 @@ describe('Blueprint: route', function () {
334
330
"export { default } from 'my-addon/templates/foo';"
335
331
) ;
336
332
337
- expect ( _file ( 'tests/unit/routes/foo-test.js' ) ) . to . equal ( fixture ( 'route-test/rfc232-addon.js' ) ) ;
333
+ expect ( _file ( 'tests/unit/routes/foo-test.js' ) ) . to . equal (
334
+ fixture ( 'route-test/rfc232-addon.js' )
335
+ ) ;
338
336
339
337
expect ( file ( 'tests/dummy/app/router.js' ) ) . to . not . contain ( "this.route('foo')" ) ;
340
338
} ) . then ( ( ) => {
@@ -362,7 +360,9 @@ describe('Blueprint: route', function () {
362
360
"export { default } from 'my-addon/templates/foo';"
363
361
) ;
364
362
365
- expect ( _file ( 'tests/unit/routes/foo-test.js' ) ) . to . equal ( fixture ( 'route-test/rfc232-addon.js' ) ) ;
363
+ expect ( _file ( 'tests/unit/routes/foo-test.js' ) ) . to . equal (
364
+ fixture ( 'route-test/rfc232-addon.js' )
365
+ ) ;
366
366
367
367
expect ( file ( 'tests/dummy/app/router.js' ) ) . to . not . contain ( "this.route('foo')" ) ;
368
368
expect ( file ( 'tests/dummy/app/router.js' ) ) . to . not . contain ( "this.route('foo.js')" ) ;
@@ -471,7 +471,9 @@ describe('Blueprint: route', function () {
471
471
"export { default } from 'my-addon/foo/template';"
472
472
) ;
473
473
474
- expect ( _file ( 'tests/unit/foo/route-test.js' ) ) . to . equal ( fixture ( 'route-test/rfc232-addon.js' ) ) ;
474
+ expect ( _file ( 'tests/unit/foo/route-test.js' ) ) . to . equal (
475
+ fixture ( 'route-test/rfc232-addon.js' )
476
+ ) ;
475
477
} ) ;
476
478
} ) ;
477
479
@@ -495,7 +497,9 @@ describe('Blueprint: route', function () {
495
497
"export { default } from 'my-addon/foo/template';"
496
498
) ;
497
499
498
- expect ( _file ( 'tests/unit/foo/route-test.js' ) ) . to . equal ( fixture ( 'route-test/rfc232-addon.js' ) ) ;
500
+ expect ( _file ( 'tests/unit/foo/route-test.js' ) ) . to . equal (
501
+ fixture ( 'route-test/rfc232-addon.js' )
502
+ ) ;
499
503
} ) ;
500
504
} ) ;
501
505
0 commit comments