discourse/plugins/chat/test/javascripts/components/chat-user-info-test.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
574 B
JavaScript
Raw Normal View History

import { render } from "@ember/test-helpers";
import hbs from "htmlbars-inline-precompile";
import { module, test } from "qunit";
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
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().containsText(this.user.username);
assert.dom().containsText(this.user.name);
});
});