File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
packages/@ember/-internals/glimmer/tests/integration/application Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ import { service } from '@ember/service';
6
6
import { Component } from '@ember/-internals/glimmer' ;
7
7
import { tracked } from '@ember/-internals/metal' ;
8
8
import { set } from '@ember/object' ;
9
+ import GlimmerComponent from '@glimmer/component' ;
9
10
import { backtrackingMessageFor } from '../../utils/debug-stack' ;
10
11
import { runTask } from '../../../../../../internal-test-helpers/lib/run' ;
11
12
import { template } from '@ember/template-compiler' ;
@@ -413,10 +414,9 @@ moduleFor(
413
414
} ) ;
414
415
415
416
this . addComponent ( 'foo' , {
416
- // TODO: use a Glimmer Component instead, since that's the requirement to make it fail
417
- ComponentClass : class extends Component {
417
+ ComponentClass : class extends GlimmerComponent {
418
418
willDestroy ( ) {
419
- assert . step ( this . model ) ;
419
+ assert . step ( this . args . model ) ;
420
420
}
421
421
} ,
422
422
} ) ;
You can’t perform that action at this time.
0 commit comments