@@ -487,7 +487,7 @@ describe('Blueprint: component', function() {
487487
488488 expect ( _file ( 'addon/templates/components/foo.hbs' ) ) . to . equal ( '{{yield}}' ) ;
489489
490- expect ( _file ( 'app/components/foo.ts ' ) ) . to . contain (
490+ expect ( _file ( 'app/components/foo.js ' ) ) . to . contain (
491491 "export { default } from 'my-addon/components/foo';"
492492 ) ;
493493
@@ -509,7 +509,7 @@ describe('Blueprint: component', function() {
509509
510510 expect ( _file ( 'addon/templates/components/x-foo.hbs' ) ) . to . equal ( '{{yield}}' ) ;
511511
512- expect ( _file ( 'app/components/x-foo.ts ' ) ) . to . contain (
512+ expect ( _file ( 'app/components/x-foo.js ' ) ) . to . contain (
513513 "export { default } from 'my-addon/components/x-foo';"
514514 ) ;
515515
@@ -531,7 +531,7 @@ describe('Blueprint: component', function() {
531531
532532 expect ( _file ( 'addon/templates/components/foo/x-foo.hbs' ) ) . to . equal ( '{{yield}}' ) ;
533533
534- expect ( _file ( 'app/components/foo/x-foo.ts ' ) ) . to . contain (
534+ expect ( _file ( 'app/components/foo/x-foo.js ' ) ) . to . contain (
535535 "export { default } from 'my-addon/components/foo/x-foo';"
536536 ) ;
537537
@@ -553,7 +553,7 @@ describe('Blueprint: component', function() {
553553
554554 expect ( _file ( 'tests/dummy/app/templates/components/x-foo.hbs' ) ) . to . equal ( '{{yield}}' ) ;
555555
556- expect ( _file ( 'app/components/x-foo.ts ' ) ) . to . not . exist ;
556+ expect ( _file ( 'app/components/x-foo.js ' ) ) . to . not . exist ;
557557
558558 expect ( _file ( 'tests/unit/components/x-foo-test.ts' ) ) . to . not . exist ;
559559 } ) ;
@@ -567,7 +567,7 @@ describe('Blueprint: component', function() {
567567
568568 expect ( _file ( 'tests/dummy/app/templates/components/foo/x-foo.hbs' ) ) . to . equal ( '{{yield}}' ) ;
569569
570- expect ( _file ( 'app/components/foo/x-foo.ts ' ) ) . to . not . exist ;
570+ expect ( _file ( 'app/components/foo/x-foo.js ' ) ) . to . not . exist ;
571571
572572 expect ( _file ( 'tests/unit/components/foo/x-foo-test.ts' ) ) . to . not . exist ;
573573 } ) ;
@@ -581,7 +581,7 @@ describe('Blueprint: component', function() {
581581
582582 expect ( _file ( 'addon/components/x-foo/template.hbs' ) ) . to . equal ( '{{yield}}' ) ;
583583
584- expect ( _file ( 'app/components/x-foo/component.ts ' ) ) . to . contain (
584+ expect ( _file ( 'app/components/x-foo/component.js ' ) ) . to . contain (
585585 "export { default } from 'my-addon/components/x-foo/component';"
586586 ) ;
587587
@@ -704,7 +704,7 @@ describe('Blueprint: component', function() {
704704
705705 expect ( _file ( 'lib/my-addon/addon/templates/components/foo.hbs' ) ) . to . equal ( '{{yield}}' ) ;
706706
707- expect ( _file ( 'lib/my-addon/app/components/foo.ts ' ) ) . to . contain (
707+ expect ( _file ( 'lib/my-addon/app/components/foo.js ' ) ) . to . contain (
708708 "export { default } from 'my-addon/components/foo';"
709709 ) ;
710710
@@ -726,7 +726,7 @@ describe('Blueprint: component', function() {
726726
727727 expect ( _file ( 'lib/my-addon/addon/templates/components/x-foo.hbs' ) ) . to . equal ( '{{yield}}' ) ;
728728
729- expect ( _file ( 'lib/my-addon/app/components/x-foo.ts ' ) ) . to . contain (
729+ expect ( _file ( 'lib/my-addon/app/components/x-foo.js ' ) ) . to . contain (
730730 "export { default } from 'my-addon/components/x-foo';"
731731 ) ;
732732
@@ -750,7 +750,7 @@ describe('Blueprint: component', function() {
750750 '{{yield}}'
751751 ) ;
752752
753- expect ( _file ( 'lib/my-addon/app/components/foo/x-foo.ts ' ) ) . to . contain (
753+ expect ( _file ( 'lib/my-addon/app/components/foo/x-foo.js ' ) ) . to . contain (
754754 "export { default } from 'my-addon/components/foo/x-foo';"
755755 ) ;
756756
@@ -774,7 +774,7 @@ describe('Blueprint: component', function() {
774774
775775 expect ( _file ( 'lib/my-addon/addon/components/x-foo/template.hbs' ) ) . to . equal ( '{{yield}}' ) ;
776776
777- expect ( _file ( 'lib/my-addon/app/components/x-foo/component.ts ' ) ) . to . contain (
777+ expect ( _file ( 'lib/my-addon/app/components/x-foo/component.js ' ) ) . to . contain (
778778 "export { default } from 'my-addon/components/x-foo/component';"
779779 ) ;
780780
@@ -801,7 +801,7 @@ describe('Blueprint: component', function() {
801801 '{{yield}}'
802802 ) ;
803803
804- expect ( _file ( 'lib/my-addon/app/components/foo/x-foo/component.ts ' ) ) . to . contain (
804+ expect ( _file ( 'lib/my-addon/app/components/foo/x-foo/component.js ' ) ) . to . contain (
805805 "export { default } from 'my-addon/components/foo/x-foo/component';"
806806 ) ;
807807
0 commit comments