@@ -33,11 +33,7 @@ describe('Blueprint: component-test', function () {
33
33
it ( 'component-test foo --strict' , function ( ) {
34
34
return emberGenerateDestroy ( [ 'component-test' , 'foo' , '--strict' ] , ( _file ) => {
35
35
expect ( _file ( 'tests/integration/components/foo-test.gjs' ) ) . to . equal (
36
- fixture ( 'component-test/rfc232.gjs' , {
37
- replace : {
38
- modulePrefix : 'my-app' ,
39
- } ,
40
- } )
36
+ fixture ( 'component-test/app.gjs' )
41
37
) ;
42
38
} ) ;
43
39
} ) ;
@@ -47,11 +43,7 @@ describe('Blueprint: component-test', function () {
47
43
[ 'component-test' , 'foo' , '--strict' , '--typescript' ] ,
48
44
( _file ) => {
49
45
expect ( _file ( 'tests/integration/components/foo-test.gts' ) ) . to . equal (
50
- fixture ( 'component-test/rfc232.gts' , {
51
- replace : {
52
- modulePrefix : 'my-app' ,
53
- } ,
54
- } )
46
+ fixture ( 'component-test/app.gts' )
55
47
) ;
56
48
}
57
49
) ;
@@ -95,11 +87,7 @@ describe('Blueprint: component-test', function () {
95
87
it ( 'component-test foo --strict' , function ( ) {
96
88
return emberGenerateDestroy ( [ 'component-test' , 'foo' , '--strict' ] , ( _file ) => {
97
89
expect ( _file ( 'tests/integration/components/foo-test.gjs' ) ) . to . equal (
98
- fixture ( 'component-test/rfc232.gjs' , {
99
- replace : {
100
- modulePrefix : 'dummy' ,
101
- } ,
102
- } )
90
+ fixture ( 'component-test/addon.gjs' )
103
91
) ;
104
92
} ) ;
105
93
} ) ;
@@ -109,11 +97,7 @@ describe('Blueprint: component-test', function () {
109
97
[ 'component-test' , 'foo' , '--strict' , '--typescript' ] ,
110
98
( _file ) => {
111
99
expect ( _file ( 'tests/integration/components/foo-test.gts' ) ) . to . equal (
112
- fixture ( 'component-test/rfc232.gts' , {
113
- replace : {
114
- modulePrefix : 'dummy' ,
115
- } ,
116
- } )
100
+ fixture ( 'component-test/addon.gts' )
117
101
) ;
118
102
}
119
103
) ;
0 commit comments