DEV: Autofix (w/ manual follow up) various qunit lints (#29950)

This commit is contained in:
Jarek Radosz
2024-11-27 13:02:55 +01:00
committed by GitHub
parent e4bb727d33
commit 5db0eba0a8
58 changed files with 444 additions and 487 deletions

View File

@ -95,7 +95,7 @@ module("Discourse Chat | Component | chat-composer-upload", function (hooks) {
);
await click(".chat-composer-upload__remove-btn");
assert.strictEqual(this.uploadRemoved, true);
assert.true(this.uploadRemoved);
});
test("cancelling in progress upload", async function (assert) {
@ -115,6 +115,6 @@ module("Discourse Chat | Component | chat-composer-upload", function (hooks) {
);
await click(".chat-composer-upload__remove-btn");
assert.strictEqual(this.uploadRemoved, true);
assert.true(this.uploadRemoved);
});
});