UI: Hds::Dropdown replace PopupMenu (#25321)

This commit is contained in:
claire bontempo
2024-02-09 10:38:14 -08:00
committed by GitHub
parent 28d81ed832
commit fe56069f67
78 changed files with 1446 additions and 1215 deletions

View File

@@ -49,10 +49,10 @@ module('Integration | Component | auth-config-form options', function (hooks) {
});
sinon.spy(model.config, 'serialize');
this.set('model', model);
await render(hbs`{{auth-config-form/options model=this.model}}`);
await render(hbs`<AuthConfigForm::Options @model={{this.model}} />`);
component.save();
return settled().then(() => {
assert.ok(model.config.serialize.calledOnce);
assert.strictEqual(model.config.serialize.callCount, 1, 'config serialize was called once');
});
});
});