mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 04:43:37 +08:00
25 lines
730 B
JavaScript
25 lines
730 B
JavaScript
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
|
import hbs from "htmlbars-inline-precompile";
|
|
import { module, test } from "qunit";
|
|
import { render } from "@ember/test-helpers";
|
|
|
|
module("Discourse Chat | Component | chat-user-info", function (hooks) {
|
|
setupRenderingTest(hooks);
|
|
|
|
test("avatar and name", async function (assert) {
|
|
this.set("user", this.currentUser);
|
|
|
|
await render(hbs`<ChatUserInfo @user={{this.user}} />`);
|
|
|
|
assert
|
|
.dom(`a[data-user-card=${this.user.username}] div.chat-user-avatar`)
|
|
.exists();
|
|
|
|
assert
|
|
.dom(
|
|
`a[data-user-card=${this.user.username}] span.chat-user-display-name`
|
|
)
|
|
.includesText(this.user.username);
|
|
});
|
|
});
|