DEV: Convert more equal assertions (#29554)

…to either qunit-dom or `strictEqual`
This commit is contained in:
Jarek Radosz
2024-11-03 21:04:38 +01:00
committed by GitHub
parent d2056c7fc6
commit b81055a6d4
33 changed files with 165 additions and 198 deletions

View File

@ -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) {