File tree 1 file changed +5
-2
lines changed
1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 1
- import { get } from ' @ember/helper' ;
2
1
import type { TestContext } from ' @ember/test-helpers' ;
3
2
import { render } from ' @ember/test-helpers' ;
4
3
import Component from ' @glimmer/component' ;
@@ -27,6 +26,10 @@ export async function reactiveContext<T extends Model>(
27
26
_fields .push (field .name );
28
27
});
29
28
29
+ function lowPolyGet(obj : TestContext , prop : string ): unknown {
30
+ return obj [prop ];
31
+ }
32
+
30
33
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
31
34
interface ReactiveComponent extends Record <string , string > {}
32
35
class ReactiveComponent extends Component {
@@ -38,7 +41,7 @@ export async function reactiveContext<T extends Model>(
38
41
<div class =" reactive-context" >
39
42
<ul >
40
43
{{#each this . __allFields as | prop | }}
41
- <li >{{prop }} : {{get this prop}} </li >
44
+ <li >{{prop }} : {{lowPolyGet this prop}} </li >
42
45
{{/each }}
43
46
</ul >
44
47
</div >
You can’t perform that action at this time.
0 commit comments