Skip to content

Commit 2aba612

Browse files
committed
Fix get issues
1 parent e2abd4d commit 2aba612

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

tests/main/tests/helpers/reactive-context.gts

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import { get } from '@ember/helper';
21
import type { TestContext } from '@ember/test-helpers';
32
import { render } from '@ember/test-helpers';
43
import Component from '@glimmer/component';
@@ -27,6 +26,10 @@ export async function reactiveContext<T extends Model>(
2726
_fields.push(field.name);
2827
});
2928

29+
function lowPolyGet(obj: TestContext, prop: string): unknown {
30+
return obj[prop];
31+
}
32+
3033
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
3134
interface ReactiveComponent extends Record<string, string> {}
3235
class ReactiveComponent extends Component {
@@ -38,7 +41,7 @@ export async function reactiveContext<T extends Model>(
3841
<div class="reactive-context">
3942
<ul>
4043
{{#each this.__allFields as |prop|}}
41-
<li>{{prop}}: {{get this prop}}</li>
44+
<li>{{prop}}: {{lowPolyGet this prop}}</li>
4245
{{/each}}
4346
</ul>
4447
</div>

0 commit comments

Comments
 (0)