@@ -487,7 +487,7 @@ describe('Blueprint: component', function() {
487
487
488
488
expect ( _file ( 'addon/templates/components/foo.hbs' ) ) . to . equal ( '{{yield}}' ) ;
489
489
490
- expect ( _file ( 'app/components/foo.ts ' ) ) . to . contain (
490
+ expect ( _file ( 'app/components/foo.js ' ) ) . to . contain (
491
491
"export { default } from 'my-addon/components/foo';"
492
492
) ;
493
493
@@ -509,7 +509,7 @@ describe('Blueprint: component', function() {
509
509
510
510
expect ( _file ( 'addon/templates/components/x-foo.hbs' ) ) . to . equal ( '{{yield}}' ) ;
511
511
512
- expect ( _file ( 'app/components/x-foo.ts ' ) ) . to . contain (
512
+ expect ( _file ( 'app/components/x-foo.js ' ) ) . to . contain (
513
513
"export { default } from 'my-addon/components/x-foo';"
514
514
) ;
515
515
@@ -531,7 +531,7 @@ describe('Blueprint: component', function() {
531
531
532
532
expect ( _file ( 'addon/templates/components/foo/x-foo.hbs' ) ) . to . equal ( '{{yield}}' ) ;
533
533
534
- expect ( _file ( 'app/components/foo/x-foo.ts ' ) ) . to . contain (
534
+ expect ( _file ( 'app/components/foo/x-foo.js ' ) ) . to . contain (
535
535
"export { default } from 'my-addon/components/foo/x-foo';"
536
536
) ;
537
537
@@ -553,7 +553,7 @@ describe('Blueprint: component', function() {
553
553
554
554
expect ( _file ( 'tests/dummy/app/templates/components/x-foo.hbs' ) ) . to . equal ( '{{yield}}' ) ;
555
555
556
- expect ( _file ( 'app/components/x-foo.ts ' ) ) . to . not . exist ;
556
+ expect ( _file ( 'app/components/x-foo.js ' ) ) . to . not . exist ;
557
557
558
558
expect ( _file ( 'tests/unit/components/x-foo-test.ts' ) ) . to . not . exist ;
559
559
} ) ;
@@ -567,7 +567,7 @@ describe('Blueprint: component', function() {
567
567
568
568
expect ( _file ( 'tests/dummy/app/templates/components/foo/x-foo.hbs' ) ) . to . equal ( '{{yield}}' ) ;
569
569
570
- expect ( _file ( 'app/components/foo/x-foo.ts ' ) ) . to . not . exist ;
570
+ expect ( _file ( 'app/components/foo/x-foo.js ' ) ) . to . not . exist ;
571
571
572
572
expect ( _file ( 'tests/unit/components/foo/x-foo-test.ts' ) ) . to . not . exist ;
573
573
} ) ;
@@ -581,7 +581,7 @@ describe('Blueprint: component', function() {
581
581
582
582
expect ( _file ( 'addon/components/x-foo/template.hbs' ) ) . to . equal ( '{{yield}}' ) ;
583
583
584
- expect ( _file ( 'app/components/x-foo/component.ts ' ) ) . to . contain (
584
+ expect ( _file ( 'app/components/x-foo/component.js ' ) ) . to . contain (
585
585
"export { default } from 'my-addon/components/x-foo/component';"
586
586
) ;
587
587
@@ -704,7 +704,7 @@ describe('Blueprint: component', function() {
704
704
705
705
expect ( _file ( 'lib/my-addon/addon/templates/components/foo.hbs' ) ) . to . equal ( '{{yield}}' ) ;
706
706
707
- expect ( _file ( 'lib/my-addon/app/components/foo.ts ' ) ) . to . contain (
707
+ expect ( _file ( 'lib/my-addon/app/components/foo.js ' ) ) . to . contain (
708
708
"export { default } from 'my-addon/components/foo';"
709
709
) ;
710
710
@@ -726,7 +726,7 @@ describe('Blueprint: component', function() {
726
726
727
727
expect ( _file ( 'lib/my-addon/addon/templates/components/x-foo.hbs' ) ) . to . equal ( '{{yield}}' ) ;
728
728
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 (
730
730
"export { default } from 'my-addon/components/x-foo';"
731
731
) ;
732
732
@@ -750,7 +750,7 @@ describe('Blueprint: component', function() {
750
750
'{{yield}}'
751
751
) ;
752
752
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 (
754
754
"export { default } from 'my-addon/components/foo/x-foo';"
755
755
) ;
756
756
@@ -774,7 +774,7 @@ describe('Blueprint: component', function() {
774
774
775
775
expect ( _file ( 'lib/my-addon/addon/components/x-foo/template.hbs' ) ) . to . equal ( '{{yield}}' ) ;
776
776
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 (
778
778
"export { default } from 'my-addon/components/x-foo/component';"
779
779
) ;
780
780
@@ -801,7 +801,7 @@ describe('Blueprint: component', function() {
801
801
'{{yield}}'
802
802
) ;
803
803
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 (
805
805
"export { default } from 'my-addon/components/foo/x-foo/component';"
806
806
) ;
807
807
0 commit comments