mirror of
https://github.com/discourse/discourse.git
synced 2025-05-24 01:21:23 +08:00
DEV: various improvements to devex on chat (#21612)
- Improves styleguide support - Adds toggle color scheme to styleguide - Adds properties mutators to styleguide - Attempts to quit a session as soon as done with it in system specs, this should at least free resources faster - Refactors fabricators to simplify them - Adds more fabricators (uploads for example) - Starts implementing components pattern in system specs - Uses Chat::Message creator to create messages in system specs, this should help to have more real specs as the side effects should now happen
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
import { setupRenderingTest } from "discourse/tests/helpers/component-test";
|
||||
import { query } from "discourse/tests/helpers/qunit-helpers";
|
||||
import hbs from "htmlbars-inline-precompile";
|
||||
import fabricators from "../helpers/fabricators";
|
||||
import fabricators from "discourse/plugins/chat/discourse/lib/fabricators";
|
||||
import { module, test } from "qunit";
|
||||
import { render } from "@ember/test-helpers";
|
||||
import {
|
||||
@ -87,7 +87,7 @@ module(
|
||||
});
|
||||
|
||||
test("displays indicator when 2 or 3 users are replying", async function (assert) {
|
||||
this.channel = fabricators.chatChannel();
|
||||
this.channel = fabricators.channel();
|
||||
|
||||
await render(
|
||||
hbs`<ChatReplyingIndicator @presenceChannelName="/chat-reply/1" />`
|
||||
@ -102,7 +102,7 @@ module(
|
||||
});
|
||||
|
||||
test("displays indicator when 3 users are replying", async function (assert) {
|
||||
this.channel = fabricators.chatChannel();
|
||||
this.channel = fabricators.channel();
|
||||
|
||||
await render(
|
||||
hbs`<ChatReplyingIndicator @presenceChannelName="/chat-reply/1" />`
|
||||
@ -118,7 +118,7 @@ module(
|
||||
});
|
||||
|
||||
test("displays indicator when more than 3 users are replying", async function (assert) {
|
||||
this.channel = fabricators.chatChannel();
|
||||
this.channel = fabricators.channel();
|
||||
|
||||
await render(
|
||||
hbs`<ChatReplyingIndicator @presenceChannelName="/chat-reply/1" />`
|
||||
@ -135,7 +135,7 @@ module(
|
||||
});
|
||||
|
||||
test("filters current user from list of repliers", async function (assert) {
|
||||
this.channel = fabricators.chatChannel();
|
||||
this.channel = fabricators.channel();
|
||||
|
||||
await render(
|
||||
hbs`<ChatReplyingIndicator @presenceChannelName="/chat-reply/1" />`
|
||||
|
Reference in New Issue
Block a user