mirror of
https://github.com/discourse/discourse.git
synced 2025-05-25 19:29:34 +08:00
DEV: Convert more equal
assertions (#29554)
…to either qunit-dom or `strictEqual`
This commit is contained in:
@ -28,8 +28,8 @@ module("Discourse Chat | Unit | chat-composer-buttons", function (hooks) {
|
||||
|
||||
test("chatComposerButtons", function (assert) {
|
||||
const button = chatComposerButtons({ baz: "fooz" }, "inline")[1];
|
||||
assert.equal(button.id, "bar");
|
||||
assert.equal(button.label, "fooz");
|
||||
assert.strictEqual(button.id, "bar");
|
||||
assert.strictEqual(button.label, "fooz");
|
||||
});
|
||||
|
||||
test("chatComposerButtonsDependentKeys", function (assert) {
|
||||
|
Reference in New Issue
Block a user