### 🐞 Describe the Bug In a rendering test the `link` helper always return an empty`href`. ### 🔬 Minimal Reproduction ```js test('href test', async function (assert) { assert.expect(1); await render(hbs` {{#let (link route="login") as |l|}} <a href={{l.url}}>Login</a> {{/let}} `); assert.dom('a').hasAttribute('href', `/login`); }); ``` <img width="660" alt="Screen Shot 2021-03-08 at 9 29 56 AM" src="https://user-images.githubusercontent.com/1156865/110334919-4831c800-7ff1-11eb-97f0-7d8c9b01807b.png"> ### 😕 Actual Behavior Element `a` has an empty attribute "href". ### 🤔 Expected Behavior Element `a` has attribute "href" with value "/login" ### 🌍 Environment - Ember: 3.25.3 ### ➕ Additional Context https://github.com/emberjs/ember.js/issues/19408