DEV: Fix linting (#127)
This commit is contained in:
parent
b824e19e91
commit
11f7dee7f2
|
@ -1,13 +1,16 @@
|
|||
import selectKit from "discourse/tests/helpers/select-kit-helper";
|
||||
import { acceptance, waitFor, updateCurrentUser } from "discourse/tests/helpers/qunit-helpers";
|
||||
import {
|
||||
acceptance,
|
||||
waitFor,
|
||||
updateCurrentUser,
|
||||
} from "discourse/tests/helpers/qunit-helpers";
|
||||
import { skip, test } from "qunit";
|
||||
|
||||
acceptance("Search - Full Page", function (needs) {
|
||||
needs.settings({ assign_enabled: true });
|
||||
needs.user();
|
||||
|
||||
test(
|
||||
"update in:assigned filter through advanced search ui",
|
||||
async (assert) => {
|
||||
test("update in:assigned filter through advanced search ui", async (assert) => {
|
||||
updateCurrentUser({ can_assign: true });
|
||||
const inSelector = selectKit(".search-advanced-options .select-kit#in");
|
||||
|
||||
|
@ -26,12 +29,9 @@ acceptance("Search - Full Page", function (needs) {
|
|||
"none in:assigned",
|
||||
'has updated search term to "none in:assinged"'
|
||||
);
|
||||
}
|
||||
);
|
||||
});
|
||||
|
||||
test(
|
||||
"update in:unassigned filter through advanced search ui",
|
||||
async (assert) => {
|
||||
test("update in:unassigned filter through advanced search ui", async (assert) => {
|
||||
updateCurrentUser({ can_assign: true });
|
||||
const inSelector = selectKit(".search-advanced-options .select-kit#in");
|
||||
|
||||
|
@ -50,8 +50,7 @@ acceptance("Search - Full Page", function (needs) {
|
|||
"none in:unassigned",
|
||||
'has updated search term to "none in:unassinged"'
|
||||
);
|
||||
}
|
||||
);
|
||||
});
|
||||
|
||||
skip("update assigned to through advanced search ui", async (assert) => {
|
||||
updateCurrentUser({ can_assign: true });
|
||||
|
|
Loading…
Reference in New Issue