mirror of
https://github.com/discourse/discourse.git
synced 2025-04-03 05:39:41 +08:00
DEV: migrate components tests to async/await
This commit is contained in:
parent
c0992a4d31
commit
d16a2c776a
@ -7,8 +7,7 @@ moduleForComponent("admin-report", {
|
|||||||
componentTest("default", {
|
componentTest("default", {
|
||||||
template: "{{admin-report dataSourceName='signups'}}",
|
template: "{{admin-report dataSourceName='signups'}}",
|
||||||
|
|
||||||
test(assert) {
|
async test(assert) {
|
||||||
andThen(() => {
|
|
||||||
assert.ok(exists(".admin-report.signups"));
|
assert.ok(exists(".admin-report.signups"));
|
||||||
|
|
||||||
assert.ok(
|
assert.ok(
|
||||||
@ -62,10 +61,8 @@ componentTest("default", {
|
|||||||
);
|
);
|
||||||
|
|
||||||
assert.ok(exists(".totals-sample-table"), "it has totals");
|
assert.ok(exists(".totals-sample-table"), "it has totals");
|
||||||
});
|
|
||||||
|
|
||||||
click(".admin-report-table-header.y .sort-button");
|
await click(".admin-report-table-header.y .sort-button");
|
||||||
andThen(() => {
|
|
||||||
assert.equal(
|
assert.equal(
|
||||||
find(".report-body .report-table tbody tr:nth-child(1) td:nth-child(2)")
|
find(".report-body .report-table tbody tr:nth-child(1) td:nth-child(2)")
|
||||||
.text()
|
.text()
|
||||||
@ -73,7 +70,6 @@ componentTest("default", {
|
|||||||
"7",
|
"7",
|
||||||
"it can sort rows"
|
"it can sort rows"
|
||||||
);
|
);
|
||||||
});
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -90,7 +86,6 @@ componentTest("options", {
|
|||||||
},
|
},
|
||||||
|
|
||||||
test(assert) {
|
test(assert) {
|
||||||
andThen(() => {
|
|
||||||
assert.ok(exists(".pagination"), "it paginates the results");
|
assert.ok(exists(".pagination"), "it paginates the results");
|
||||||
assert.equal(
|
assert.equal(
|
||||||
find(".pagination button").length,
|
find(".pagination button").length,
|
||||||
@ -99,23 +94,17 @@ componentTest("options", {
|
|||||||
);
|
);
|
||||||
|
|
||||||
assert.notOk(exists(".totals-sample-table"), "it hides totals");
|
assert.notOk(exists(".totals-sample-table"), "it hides totals");
|
||||||
});
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
componentTest("switch modes", {
|
componentTest("switch modes", {
|
||||||
template: "{{admin-report dataSourceName='signups'}}",
|
template: "{{admin-report dataSourceName='signups'}}",
|
||||||
|
|
||||||
test(assert) {
|
async test(assert) {
|
||||||
click(".mode-button.chart");
|
await click(".mode-button.chart");
|
||||||
|
|
||||||
andThen(() => {
|
assert.notOk(exists(".admin-report.table.signups"), "it removes the table");
|
||||||
assert.notOk(
|
|
||||||
exists(".admin-report.table.signups"),
|
|
||||||
"it removes the table"
|
|
||||||
);
|
|
||||||
assert.ok(exists(".admin-report.chart.signups"), "it shows the chart");
|
assert.ok(exists(".admin-report.chart.signups"), "it shows the chart");
|
||||||
});
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -123,8 +112,6 @@ componentTest("timeout", {
|
|||||||
template: "{{admin-report dataSourceName='signups_timeout'}}",
|
template: "{{admin-report dataSourceName='signups_timeout'}}",
|
||||||
|
|
||||||
test(assert) {
|
test(assert) {
|
||||||
andThen(() => {
|
|
||||||
assert.ok(exists(".alert-error"), "it displays a timeout error");
|
assert.ok(exists(".alert-error"), "it displays a timeout error");
|
||||||
});
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -4,16 +4,14 @@ moduleForComponent("categories-admin-dropdown", { integration: true });
|
|||||||
componentTest("default", {
|
componentTest("default", {
|
||||||
template: "{{categories-admin-dropdown}}",
|
template: "{{categories-admin-dropdown}}",
|
||||||
|
|
||||||
test(assert) {
|
async test(assert) {
|
||||||
const subject = selectKit();
|
const subject = selectKit();
|
||||||
|
|
||||||
assert.equal(subject.el().find(".d-icon-bars").length, 1);
|
assert.equal(subject.el().find(".d-icon-bars").length, 1);
|
||||||
assert.equal(subject.el().find(".d-icon-caret-down").length, 1);
|
assert.equal(subject.el().find(".d-icon-caret-down").length, 1);
|
||||||
|
|
||||||
subject.expand();
|
await subject.expandAwait();
|
||||||
|
|
||||||
andThen(() => {
|
|
||||||
assert.equal(subject.rowByValue("create").name(), "New Category");
|
assert.equal(subject.rowByValue("create").name(), "New Category");
|
||||||
});
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -11,7 +11,6 @@ componentTest("with value", {
|
|||||||
template: "{{category-chooser value=2}}",
|
template: "{{category-chooser value=2}}",
|
||||||
|
|
||||||
test(assert) {
|
test(assert) {
|
||||||
andThen(() => {
|
|
||||||
assert.equal(
|
assert.equal(
|
||||||
this.get("subject")
|
this.get("subject")
|
||||||
.header()
|
.header()
|
||||||
@ -24,22 +23,19 @@ componentTest("with value", {
|
|||||||
.title(),
|
.title(),
|
||||||
"feature"
|
"feature"
|
||||||
);
|
);
|
||||||
});
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
componentTest("with excludeCategoryId", {
|
componentTest("with excludeCategoryId", {
|
||||||
template: "{{category-chooser excludeCategoryId=2}}",
|
template: "{{category-chooser excludeCategoryId=2}}",
|
||||||
|
|
||||||
test(assert) {
|
async test(assert) {
|
||||||
this.get("subject").expand();
|
await this.get("subject").expandAwait();
|
||||||
|
|
||||||
andThen(() =>
|
|
||||||
assert.notOk(
|
assert.notOk(
|
||||||
this.get("subject")
|
this.get("subject")
|
||||||
.rowByValue(2)
|
.rowByValue(2)
|
||||||
.exists()
|
.exists()
|
||||||
)
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@ -47,10 +43,9 @@ componentTest("with excludeCategoryId", {
|
|||||||
componentTest("with scopedCategoryId", {
|
componentTest("with scopedCategoryId", {
|
||||||
template: "{{category-chooser scopedCategoryId=2}}",
|
template: "{{category-chooser scopedCategoryId=2}}",
|
||||||
|
|
||||||
test(assert) {
|
async test(assert) {
|
||||||
this.get("subject").expand();
|
await this.get("subject").expandAwait();
|
||||||
|
|
||||||
andThen(() => {
|
|
||||||
assert.equal(
|
assert.equal(
|
||||||
this.get("subject")
|
this.get("subject")
|
||||||
.rowByIndex(0)
|
.rowByIndex(0)
|
||||||
@ -76,7 +71,6 @@ componentTest("with scopedCategoryId", {
|
|||||||
26
|
26
|
||||||
);
|
);
|
||||||
assert.equal(this.get("subject").rows().length, 2);
|
assert.equal(this.get("subject").rows().length, 2);
|
||||||
});
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -88,7 +82,6 @@ componentTest("with allowUncategorized=null", {
|
|||||||
},
|
},
|
||||||
|
|
||||||
test(assert) {
|
test(assert) {
|
||||||
andThen(() => {
|
|
||||||
assert.equal(
|
assert.equal(
|
||||||
this.get("subject")
|
this.get("subject")
|
||||||
.header()
|
.header()
|
||||||
@ -101,7 +94,6 @@ componentTest("with allowUncategorized=null", {
|
|||||||
.title(),
|
.title(),
|
||||||
"category"
|
"category"
|
||||||
);
|
);
|
||||||
});
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -113,7 +105,6 @@ componentTest("with allowUncategorized=null rootNone=true", {
|
|||||||
},
|
},
|
||||||
|
|
||||||
test(assert) {
|
test(assert) {
|
||||||
andThen(() => {
|
|
||||||
assert.equal(
|
assert.equal(
|
||||||
this.get("subject")
|
this.get("subject")
|
||||||
.header()
|
.header()
|
||||||
@ -126,7 +117,6 @@ componentTest("with allowUncategorized=null rootNone=true", {
|
|||||||
.title(),
|
.title(),
|
||||||
"category"
|
"category"
|
||||||
);
|
);
|
||||||
});
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -140,7 +130,6 @@ componentTest("with disallowed uncategorized, rootNone and rootNoneLabel", {
|
|||||||
},
|
},
|
||||||
|
|
||||||
test(assert) {
|
test(assert) {
|
||||||
andThen(() => {
|
|
||||||
assert.equal(
|
assert.equal(
|
||||||
this.get("subject")
|
this.get("subject")
|
||||||
.header()
|
.header()
|
||||||
@ -153,7 +142,6 @@ componentTest("with disallowed uncategorized, rootNone and rootNoneLabel", {
|
|||||||
.title(),
|
.title(),
|
||||||
"category"
|
"category"
|
||||||
);
|
);
|
||||||
});
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -165,7 +153,6 @@ componentTest("with allowed uncategorized", {
|
|||||||
},
|
},
|
||||||
|
|
||||||
test(assert) {
|
test(assert) {
|
||||||
andThen(() => {
|
|
||||||
assert.equal(
|
assert.equal(
|
||||||
this.get("subject")
|
this.get("subject")
|
||||||
.header()
|
.header()
|
||||||
@ -178,7 +165,6 @@ componentTest("with allowed uncategorized", {
|
|||||||
.title(),
|
.title(),
|
||||||
"uncategorized"
|
"uncategorized"
|
||||||
);
|
);
|
||||||
});
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -190,7 +176,6 @@ componentTest("with allowed uncategorized and rootNone", {
|
|||||||
},
|
},
|
||||||
|
|
||||||
test(assert) {
|
test(assert) {
|
||||||
andThen(() => {
|
|
||||||
assert.equal(
|
assert.equal(
|
||||||
this.get("subject")
|
this.get("subject")
|
||||||
.header()
|
.header()
|
||||||
@ -203,7 +188,6 @@ componentTest("with allowed uncategorized and rootNone", {
|
|||||||
.title(),
|
.title(),
|
||||||
"(no category)"
|
"(no category)"
|
||||||
);
|
);
|
||||||
});
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -217,7 +201,6 @@ componentTest("with allowed uncategorized rootNone and rootNoneLabel", {
|
|||||||
},
|
},
|
||||||
|
|
||||||
test(assert) {
|
test(assert) {
|
||||||
andThen(() => {
|
|
||||||
assert.equal(
|
assert.equal(
|
||||||
this.get("subject")
|
this.get("subject")
|
||||||
.header()
|
.header()
|
||||||
@ -230,6 +213,5 @@ componentTest("with allowed uncategorized rootNone and rootNoneLabel", {
|
|||||||
.title(),
|
.title(),
|
||||||
"root none label"
|
"root none label"
|
||||||
);
|
);
|
||||||
});
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -12,10 +12,9 @@ componentTest("default", {
|
|||||||
this.set("items", [{ id: 1, name: "hello" }, { id: 2, name: "world" }]);
|
this.set("items", [{ id: 1, name: "hello" }, { id: 2, name: "world" }]);
|
||||||
},
|
},
|
||||||
|
|
||||||
test(assert) {
|
async test(assert) {
|
||||||
this.get("subject").expand();
|
await this.get("subject").expandAwait();
|
||||||
|
|
||||||
andThen(() => {
|
|
||||||
assert.equal(
|
assert.equal(
|
||||||
this.get("subject")
|
this.get("subject")
|
||||||
.header()
|
.header()
|
||||||
@ -34,7 +33,6 @@ componentTest("default", {
|
|||||||
.name(),
|
.name(),
|
||||||
"world"
|
"world"
|
||||||
);
|
);
|
||||||
});
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -47,10 +45,9 @@ componentTest("with valueAttribute", {
|
|||||||
]);
|
]);
|
||||||
},
|
},
|
||||||
|
|
||||||
test(assert) {
|
async test(assert) {
|
||||||
this.get("subject").expand();
|
await this.get("subject").expandAwait();
|
||||||
|
|
||||||
andThen(() => {
|
|
||||||
assert.equal(
|
assert.equal(
|
||||||
this.get("subject")
|
this.get("subject")
|
||||||
.rowByValue(0)
|
.rowByValue(0)
|
||||||
@ -63,7 +60,6 @@ componentTest("with valueAttribute", {
|
|||||||
.name(),
|
.name(),
|
||||||
"world"
|
"world"
|
||||||
);
|
);
|
||||||
});
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -73,10 +69,9 @@ componentTest("with nameProperty", {
|
|||||||
this.set("items", [{ id: 0, text: "hello" }, { id: 1, text: "world" }]);
|
this.set("items", [{ id: 0, text: "hello" }, { id: 1, text: "world" }]);
|
||||||
},
|
},
|
||||||
|
|
||||||
test(assert) {
|
async test(assert) {
|
||||||
this.get("subject").expand();
|
await this.get("subject").expandAwait();
|
||||||
|
|
||||||
andThen(() => {
|
|
||||||
assert.equal(
|
assert.equal(
|
||||||
this.get("subject")
|
this.get("subject")
|
||||||
.rowByValue(0)
|
.rowByValue(0)
|
||||||
@ -89,7 +84,6 @@ componentTest("with nameProperty", {
|
|||||||
.name(),
|
.name(),
|
||||||
"world"
|
"world"
|
||||||
);
|
);
|
||||||
});
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -99,10 +93,9 @@ componentTest("with an array as content", {
|
|||||||
this.set("items", ["evil", "trout", "hat"]);
|
this.set("items", ["evil", "trout", "hat"]);
|
||||||
},
|
},
|
||||||
|
|
||||||
test(assert) {
|
async test(assert) {
|
||||||
this.get("subject").expand();
|
await this.get("subject").expandAwait();
|
||||||
|
|
||||||
andThen(() => {
|
|
||||||
assert.equal(
|
assert.equal(
|
||||||
this.get("subject")
|
this.get("subject")
|
||||||
.rowByValue("evil")
|
.rowByValue("evil")
|
||||||
@ -115,7 +108,6 @@ componentTest("with an array as content", {
|
|||||||
.name(),
|
.name(),
|
||||||
"trout"
|
"trout"
|
||||||
);
|
);
|
||||||
});
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -127,10 +119,9 @@ componentTest("with value and none as a string", {
|
|||||||
this.set("value", "trout");
|
this.set("value", "trout");
|
||||||
},
|
},
|
||||||
|
|
||||||
test(assert) {
|
async test(assert) {
|
||||||
this.get("subject").expand();
|
await this.get("subject").expandAwait();
|
||||||
|
|
||||||
andThen(() => {
|
|
||||||
assert.equal(
|
assert.equal(
|
||||||
this.get("subject")
|
this.get("subject")
|
||||||
.noneRow()
|
.noneRow()
|
||||||
@ -156,13 +147,10 @@ componentTest("with value and none as a string", {
|
|||||||
"trout"
|
"trout"
|
||||||
);
|
);
|
||||||
assert.equal(this.get("value"), "trout");
|
assert.equal(this.get("value"), "trout");
|
||||||
});
|
|
||||||
|
|
||||||
this.get("subject").selectNoneRow();
|
await this.get("subject").selectNoneRowAwait();
|
||||||
|
|
||||||
andThen(() => {
|
|
||||||
assert.equal(this.get("value"), null);
|
assert.equal(this.get("value"), null);
|
||||||
});
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -174,10 +162,9 @@ componentTest("with value and none as an object", {
|
|||||||
this.set("value", "evil");
|
this.set("value", "evil");
|
||||||
},
|
},
|
||||||
|
|
||||||
test(assert) {
|
async test(assert) {
|
||||||
this.get("subject").expand();
|
await this.get("subject").expand();
|
||||||
|
|
||||||
andThen(() => {
|
|
||||||
assert.equal(
|
assert.equal(
|
||||||
this.get("subject")
|
this.get("subject")
|
||||||
.noneRow()
|
.noneRow()
|
||||||
@ -203,13 +190,10 @@ componentTest("with value and none as an object", {
|
|||||||
"evil"
|
"evil"
|
||||||
);
|
);
|
||||||
assert.equal(this.get("value"), "evil");
|
assert.equal(this.get("value"), "evil");
|
||||||
});
|
|
||||||
|
|
||||||
this.get("subject").selectNoneRow();
|
await this.get("subject").selectNoneRowAwait();
|
||||||
|
|
||||||
andThen(() => {
|
|
||||||
assert.equal(this.get("value"), null);
|
assert.equal(this.get("value"), null);
|
||||||
});
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -222,17 +206,15 @@ componentTest("with no value and none as an object", {
|
|||||||
this.set("value", null);
|
this.set("value", null);
|
||||||
},
|
},
|
||||||
|
|
||||||
test(assert) {
|
async test(assert) {
|
||||||
this.get("subject").expand();
|
await this.get("subject").expandAwait();
|
||||||
|
|
||||||
andThen(() => {
|
|
||||||
assert.equal(
|
assert.equal(
|
||||||
this.get("subject")
|
this.get("subject")
|
||||||
.header()
|
.header()
|
||||||
.name(),
|
.name(),
|
||||||
"none"
|
"none"
|
||||||
);
|
);
|
||||||
});
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -245,17 +227,15 @@ componentTest("with no value and none string", {
|
|||||||
this.set("value", null);
|
this.set("value", null);
|
||||||
},
|
},
|
||||||
|
|
||||||
test(assert) {
|
async test(assert) {
|
||||||
this.get("subject").expand();
|
await this.get("subject").expandAwait();
|
||||||
|
|
||||||
andThen(() => {
|
|
||||||
assert.equal(
|
assert.equal(
|
||||||
this.get("subject")
|
this.get("subject")
|
||||||
.header()
|
.header()
|
||||||
.name(),
|
.name(),
|
||||||
"none"
|
"none"
|
||||||
);
|
);
|
||||||
});
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -266,10 +246,9 @@ componentTest("with no value and no none", {
|
|||||||
this.set("value", null);
|
this.set("value", null);
|
||||||
},
|
},
|
||||||
|
|
||||||
test(assert) {
|
async test(assert) {
|
||||||
this.get("subject").expand();
|
await this.get("subject").expandAwait();
|
||||||
|
|
||||||
andThen(() => {
|
|
||||||
assert.equal(
|
assert.equal(
|
||||||
this.get("subject")
|
this.get("subject")
|
||||||
.header()
|
.header()
|
||||||
@ -277,7 +256,6 @@ componentTest("with no value and no none", {
|
|||||||
"evil",
|
"evil",
|
||||||
"it sets the first row as value"
|
"it sets the first row as value"
|
||||||
);
|
);
|
||||||
});
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -288,10 +266,9 @@ componentTest("with empty string as value", {
|
|||||||
this.set("value", "");
|
this.set("value", "");
|
||||||
},
|
},
|
||||||
|
|
||||||
test(assert) {
|
async test(assert) {
|
||||||
this.get("subject").expand();
|
await this.get("subject").expand();
|
||||||
|
|
||||||
andThen(() => {
|
|
||||||
assert.equal(
|
assert.equal(
|
||||||
this.get("subject")
|
this.get("subject")
|
||||||
.header()
|
.header()
|
||||||
@ -299,7 +276,6 @@ componentTest("with empty string as value", {
|
|||||||
"evil",
|
"evil",
|
||||||
"it sets the first row as value"
|
"it sets the first row as value"
|
||||||
);
|
);
|
||||||
});
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -312,10 +288,9 @@ componentTest("with noneLabel", {
|
|||||||
this.set("noneLabel", "test.none");
|
this.set("noneLabel", "test.none");
|
||||||
},
|
},
|
||||||
|
|
||||||
test(assert) {
|
async test(assert) {
|
||||||
this.get("subject").expand();
|
await this.get("subject").expandAwait();
|
||||||
|
|
||||||
andThen(() => {
|
|
||||||
assert.equal(
|
assert.equal(
|
||||||
this.get("subject")
|
this.get("subject")
|
||||||
.header()
|
.header()
|
||||||
@ -323,6 +298,5 @@ componentTest("with noneLabel", {
|
|||||||
"none",
|
"none",
|
||||||
"it displays noneLabel as the header name"
|
"it displays noneLabel as the header name"
|
||||||
);
|
);
|
||||||
});
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -26,25 +26,21 @@ componentTest("updating the content refreshes the list", {
|
|||||||
this.set("pinned", true);
|
this.set("pinned", true);
|
||||||
},
|
},
|
||||||
|
|
||||||
test(assert) {
|
async test(assert) {
|
||||||
andThen(() => {
|
|
||||||
assert.equal(
|
assert.equal(
|
||||||
this.get("subject")
|
this.get("subject")
|
||||||
.header()
|
.header()
|
||||||
.name(),
|
.name(),
|
||||||
"pinned"
|
"pinned"
|
||||||
);
|
);
|
||||||
});
|
|
||||||
|
|
||||||
andThen(() => this.set("pinned", false));
|
await this.set("pinned", false);
|
||||||
|
|
||||||
andThen(() => {
|
|
||||||
assert.equal(
|
assert.equal(
|
||||||
this.get("subject")
|
this.get("subject")
|
||||||
.header()
|
.header()
|
||||||
.name(),
|
.name(),
|
||||||
"unpinned"
|
"unpinned"
|
||||||
);
|
);
|
||||||
});
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -21,10 +21,9 @@ componentTest("default", {
|
|||||||
this.set("topic", buildTopic());
|
this.set("topic", buildTopic());
|
||||||
},
|
},
|
||||||
|
|
||||||
test(assert) {
|
async test(assert) {
|
||||||
this.get("subject").expand();
|
await this.get("subject").expandAwait();
|
||||||
|
|
||||||
andThen(() => {
|
|
||||||
assert.equal(
|
assert.equal(
|
||||||
this.get("subject")
|
this.get("subject")
|
||||||
.header()
|
.header()
|
||||||
@ -55,12 +54,9 @@ componentTest("default", {
|
|||||||
.exists(),
|
.exists(),
|
||||||
"it doesn’t preselect first row"
|
"it doesn’t preselect first row"
|
||||||
);
|
);
|
||||||
});
|
|
||||||
|
|
||||||
this.get("subject").selectRowByValue("share");
|
await this.get("subject").selectRowByValueAwait("share");
|
||||||
|
|
||||||
andThen(() => {
|
|
||||||
assert.equal(this.get("value"), null, "it resets the value");
|
assert.equal(this.get("value"), null, "it resets the value");
|
||||||
});
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -31,8 +31,7 @@ componentTest("the header has a localized title", {
|
|||||||
this.set("topic", buildTopic(1));
|
this.set("topic", buildTopic(1));
|
||||||
},
|
},
|
||||||
|
|
||||||
test(assert) {
|
async test(assert) {
|
||||||
andThen(() => {
|
|
||||||
assert.equal(
|
assert.equal(
|
||||||
selectKit()
|
selectKit()
|
||||||
.header()
|
.header()
|
||||||
@ -40,11 +39,9 @@ componentTest("the header has a localized title", {
|
|||||||
"Normal",
|
"Normal",
|
||||||
"it has the correct title"
|
"it has the correct title"
|
||||||
);
|
);
|
||||||
});
|
|
||||||
|
|
||||||
this.set("topic", buildTopic(2));
|
await this.set("topic", buildTopic(2));
|
||||||
|
|
||||||
andThen(() => {
|
|
||||||
assert.equal(
|
assert.equal(
|
||||||
selectKit()
|
selectKit()
|
||||||
.header()
|
.header()
|
||||||
@ -52,7 +49,6 @@ componentTest("the header has a localized title", {
|
|||||||
"Tracking",
|
"Tracking",
|
||||||
"it correctly changes the title"
|
"it correctly changes the title"
|
||||||
);
|
);
|
||||||
});
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -66,7 +62,6 @@ componentTest("the header has a localized title", {
|
|||||||
},
|
},
|
||||||
|
|
||||||
test(assert) {
|
test(assert) {
|
||||||
andThen(() => {
|
|
||||||
assert.equal(
|
assert.equal(
|
||||||
selectKit()
|
selectKit()
|
||||||
.header()
|
.header()
|
||||||
@ -74,6 +69,5 @@ componentTest("the header has a localized title", {
|
|||||||
`${originalTranslation} PM`,
|
`${originalTranslation} PM`,
|
||||||
"it has the correct title for PMs"
|
"it has the correct title for PMs"
|
||||||
);
|
);
|
||||||
});
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -32,11 +32,10 @@ componentTest("regular topic notification level descriptions", {
|
|||||||
template:
|
template:
|
||||||
"{{topic-notifications-options value=topic.details.notification_level topic=topic}}",
|
"{{topic-notifications-options value=topic.details.notification_level topic=topic}}",
|
||||||
|
|
||||||
test(assert) {
|
async test(assert) {
|
||||||
selectKit().expand();
|
await selectKit().expandAwait();
|
||||||
this.set("topic", buildTopic("regular"));
|
await this.set("topic", buildTopic("regular"));
|
||||||
|
|
||||||
andThen(() => {
|
|
||||||
const uiTexts = extractDescs(selectKit().rows());
|
const uiTexts = extractDescs(selectKit().rows());
|
||||||
const descriptions = getTranslations();
|
const descriptions = getTranslations();
|
||||||
|
|
||||||
@ -52,7 +51,6 @@ componentTest("regular topic notification level descriptions", {
|
|||||||
"it has the correct copy"
|
"it has the correct copy"
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
});
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -60,11 +58,10 @@ componentTest("PM topic notification level descriptions", {
|
|||||||
template:
|
template:
|
||||||
"{{topic-notifications-options value=topic.details.notification_level topic=topic}}",
|
"{{topic-notifications-options value=topic.details.notification_level topic=topic}}",
|
||||||
|
|
||||||
test(assert) {
|
async test(assert) {
|
||||||
selectKit().expand();
|
await selectKit().expandAwait();
|
||||||
this.set("topic", buildTopic("private_message"));
|
await this.set("topic", buildTopic("private_message"));
|
||||||
|
|
||||||
andThen(() => {
|
|
||||||
const uiTexts = extractDescs(selectKit().rows());
|
const uiTexts = extractDescs(selectKit().rows());
|
||||||
const descriptions = getTranslations("_pm");
|
const descriptions = getTranslations("_pm");
|
||||||
|
|
||||||
@ -80,6 +77,5 @@ componentTest("PM topic notification level descriptions", {
|
|||||||
"it has the correct copy"
|
"it has the correct copy"
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
});
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -3,7 +3,7 @@ moduleForComponent("value-list", { integration: true });
|
|||||||
|
|
||||||
componentTest("functionality", {
|
componentTest("functionality", {
|
||||||
template: '{{value-list values=values inputType="array"}}',
|
template: '{{value-list values=values inputType="array"}}',
|
||||||
test(assert) {
|
async test(assert) {
|
||||||
assert.ok(this.$(".values .value").length === 0, "it has no values");
|
assert.ok(this.$(".values .value").length === 0, "it has no values");
|
||||||
assert.ok(this.$("input").length, "it renders the input");
|
assert.ok(this.$("input").length, "it renders the input");
|
||||||
assert.ok(
|
assert.ok(
|
||||||
@ -11,29 +11,20 @@ componentTest("functionality", {
|
|||||||
"it is disabled with no value"
|
"it is disabled with no value"
|
||||||
);
|
);
|
||||||
|
|
||||||
fillIn("input", "eviltrout");
|
await fillIn("input", "eviltrout");
|
||||||
andThen(() => {
|
|
||||||
assert.ok(
|
assert.ok(
|
||||||
!this.$(".btn-primary[disabled]").length,
|
!this.$(".btn-primary[disabled]").length,
|
||||||
"it isn't disabled anymore"
|
"it isn't disabled anymore"
|
||||||
);
|
);
|
||||||
});
|
|
||||||
|
|
||||||
click(".btn-primary");
|
await click(".btn-primary");
|
||||||
andThen(() => {
|
|
||||||
assert.equal(this.$(".values .value").length, 1, "it adds the value");
|
assert.equal(this.$(".values .value").length, 1, "it adds the value");
|
||||||
assert.equal(this.$("input").val(), "", "it clears the input");
|
assert.equal(this.$("input").val(), "", "it clears the input");
|
||||||
assert.ok(
|
assert.ok(this.$(".btn-primary[disabled]").length, "it is disabled again");
|
||||||
this.$(".btn-primary[disabled]").length,
|
|
||||||
"it is disabled again"
|
|
||||||
);
|
|
||||||
assert.equal(this.get("values"), "eviltrout", "it appends the value");
|
assert.equal(this.get("values"), "eviltrout", "it appends the value");
|
||||||
});
|
|
||||||
|
|
||||||
click(".value .btn-small");
|
await click(".value .btn-small");
|
||||||
andThen(() => {
|
|
||||||
assert.ok(this.$(".values .value").length === 0, "it removes the value");
|
assert.ok(this.$(".values .value").length === 0, "it removes the value");
|
||||||
});
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -43,16 +34,14 @@ componentTest("with string delimited values", {
|
|||||||
this.set("valueString", "hello\nworld");
|
this.set("valueString", "hello\nworld");
|
||||||
},
|
},
|
||||||
|
|
||||||
test(assert) {
|
async test(assert) {
|
||||||
assert.equal(this.$(".values .value").length, 2);
|
assert.equal(this.$(".values .value").length, 2);
|
||||||
|
|
||||||
fillIn("input", "eviltrout");
|
await fillIn("input", "eviltrout");
|
||||||
click(".btn-primary");
|
await click(".btn-primary");
|
||||||
|
|
||||||
andThen(() => {
|
|
||||||
assert.equal(this.$(".values .value").length, 3);
|
assert.equal(this.$(".values .value").length, 3);
|
||||||
assert.equal(this.get("valueString"), "hello\nworld\neviltrout");
|
assert.equal(this.get("valueString"), "hello\nworld\neviltrout");
|
||||||
});
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -62,15 +51,13 @@ componentTest("with array values", {
|
|||||||
this.set("valueArray", ["abc", "def"]);
|
this.set("valueArray", ["abc", "def"]);
|
||||||
},
|
},
|
||||||
|
|
||||||
test(assert) {
|
async test(assert) {
|
||||||
assert.equal(this.$(".values .value").length, 2);
|
assert.equal(this.$(".values .value").length, 2);
|
||||||
|
|
||||||
fillIn("input", "eviltrout");
|
await fillIn("input", "eviltrout");
|
||||||
click(".btn-primary");
|
await click(".btn-primary");
|
||||||
|
|
||||||
andThen(() => {
|
|
||||||
assert.equal(this.$(".values .value").length, 3);
|
assert.equal(this.$(".values .value").length, 3);
|
||||||
assert.deepEqual(this.get("valueArray"), ["abc", "def", "eviltrout"]);
|
assert.deepEqual(this.get("valueArray"), ["abc", "def", "eviltrout"]);
|
||||||
});
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -1,80 +1,134 @@
|
|||||||
function checkSelectKitIsNotExpanded(selector) {
|
function checkSelectKitIsNotExpanded(selector) {
|
||||||
if (find(selector).hasClass('is-expanded')) {
|
if (find(selector).hasClass("is-expanded")) {
|
||||||
throw new Error('You expected select-kit to be collapsed but it is expanded.');
|
throw new Error(
|
||||||
|
"You expected select-kit to be collapsed but it is expanded."
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function checkSelectKitIsNotCollapsed(selector) {
|
function checkSelectKitIsNotCollapsed(selector) {
|
||||||
if (!find(selector).hasClass('is-expanded')) {
|
if (!find(selector).hasClass("is-expanded")) {
|
||||||
throw new Error('You expected select-kit to be expanded but it is collapsed.');
|
throw new Error(
|
||||||
|
"You expected select-kit to be expanded but it is collapsed."
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Ember.Test.registerAsyncHelper('expandSelectKit', function(app, selector) {
|
Ember.Test.registerAsyncHelper("expandSelectKit", function(app, selector) {
|
||||||
checkSelectKitIsNotExpanded(selector);
|
checkSelectKitIsNotExpanded(selector);
|
||||||
click(selector + ' .select-kit-header');
|
click(selector + " .select-kit-header");
|
||||||
});
|
});
|
||||||
|
|
||||||
Ember.Test.registerAsyncHelper('collapseSelectKit', function(app, selector) {
|
Ember.Test.registerAsyncHelper("collapseSelectKit", function(app, selector) {
|
||||||
checkSelectKitIsNotCollapsed(selector);
|
checkSelectKitIsNotCollapsed(selector);
|
||||||
click(selector + ' .select-kit-header');
|
click(selector + " .select-kit-header");
|
||||||
});
|
});
|
||||||
|
|
||||||
Ember.Test.registerAsyncHelper('selectKitFillInFilter', function(app, filter, selector) {
|
Ember.Test.registerAsyncHelper("selectKitFillInFilter", function(
|
||||||
|
app,
|
||||||
|
filter,
|
||||||
|
selector
|
||||||
|
) {
|
||||||
checkSelectKitIsNotCollapsed(selector);
|
checkSelectKitIsNotCollapsed(selector);
|
||||||
fillIn(selector + ' .filter-input', filter);
|
fillIn(selector + " .filter-input", filter);
|
||||||
});
|
});
|
||||||
|
|
||||||
Ember.Test.registerAsyncHelper('selectKitSelectRowByValue', function(app, value, selector) {
|
Ember.Test.registerAsyncHelper("selectKitSelectRowByValue", function(
|
||||||
|
app,
|
||||||
|
value,
|
||||||
|
selector
|
||||||
|
) {
|
||||||
checkSelectKitIsNotCollapsed(selector);
|
checkSelectKitIsNotCollapsed(selector);
|
||||||
click(selector + " .select-kit-row[data-value='" + value + "']");
|
click(selector + " .select-kit-row[data-value='" + value + "']");
|
||||||
});
|
});
|
||||||
|
|
||||||
Ember.Test.registerAsyncHelper('selectKitSelectRowByName', function(app, name, selector) {
|
Ember.Test.registerAsyncHelper("selectKitSelectRowByName", function(
|
||||||
|
app,
|
||||||
|
name,
|
||||||
|
selector
|
||||||
|
) {
|
||||||
checkSelectKitIsNotCollapsed(selector);
|
checkSelectKitIsNotCollapsed(selector);
|
||||||
click(selector + " .select-kit-row[data-name='" + name + "']");
|
click(selector + " .select-kit-row[data-name='" + name + "']");
|
||||||
});
|
});
|
||||||
|
|
||||||
Ember.Test.registerAsyncHelper('selectKitSelectNoneRow', function(app, selector) {
|
Ember.Test.registerAsyncHelper("selectKitSelectNoneRow", function(
|
||||||
|
app,
|
||||||
|
selector
|
||||||
|
) {
|
||||||
checkSelectKitIsNotCollapsed(selector);
|
checkSelectKitIsNotCollapsed(selector);
|
||||||
click(selector + " .select-kit-row.none");
|
click(selector + " .select-kit-row.none");
|
||||||
});
|
});
|
||||||
|
|
||||||
Ember.Test.registerAsyncHelper('selectKitSelectRowByIndex', function(app, index, selector) {
|
Ember.Test.registerAsyncHelper("selectKitSelectRowByIndex", function(
|
||||||
|
app,
|
||||||
|
index,
|
||||||
|
selector
|
||||||
|
) {
|
||||||
checkSelectKitIsNotCollapsed(selector);
|
checkSelectKitIsNotCollapsed(selector);
|
||||||
click(find(selector + " .select-kit-row").eq(index));
|
click(find(selector + " .select-kit-row").eq(index));
|
||||||
});
|
});
|
||||||
|
|
||||||
function selectKit(selector) { // eslint-disable-line no-unused-vars
|
// eslint-disable-next-line no-unused-vars
|
||||||
|
function selectKit(selector) {
|
||||||
selector = selector || ".select-kit";
|
selector = selector || ".select-kit";
|
||||||
|
|
||||||
function rowHelper(row) {
|
function rowHelper(row) {
|
||||||
return {
|
return {
|
||||||
name: function() { return row.attr('data-name'); },
|
name: function() {
|
||||||
icon: function() { return row.find('.d-icon'); },
|
return row.attr("data-name");
|
||||||
title: function() { return row.attr('title'); },
|
},
|
||||||
value: function() { return row.attr('data-value'); },
|
icon: function() {
|
||||||
exists: function() { return exists(row); },
|
return row.find(".d-icon");
|
||||||
el: function() { return row; }
|
},
|
||||||
|
title: function() {
|
||||||
|
return row.attr("title");
|
||||||
|
},
|
||||||
|
value: function() {
|
||||||
|
return row.attr("data-value");
|
||||||
|
},
|
||||||
|
exists: function() {
|
||||||
|
return exists(row);
|
||||||
|
},
|
||||||
|
el: function() {
|
||||||
|
return row;
|
||||||
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
function headerHelper(header) {
|
function headerHelper(header) {
|
||||||
return {
|
return {
|
||||||
value: function() { return header.attr('data-value'); },
|
value: function() {
|
||||||
name: function() { return header.attr('data-name'); },
|
return header.attr("data-value");
|
||||||
label: function() { return header.text().trim(); },
|
},
|
||||||
icon: function() { return header.find('.icon'); },
|
name: function() {
|
||||||
title: function() { return header.attr('title'); },
|
return header.attr("data-name");
|
||||||
el: function() { return header; }
|
},
|
||||||
|
label: function() {
|
||||||
|
return header.text().trim();
|
||||||
|
},
|
||||||
|
icon: function() {
|
||||||
|
return header.find(".icon");
|
||||||
|
},
|
||||||
|
title: function() {
|
||||||
|
return header.attr("title");
|
||||||
|
},
|
||||||
|
el: function() {
|
||||||
|
return header;
|
||||||
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
function filterHelper(filter) {
|
function filterHelper(filter) {
|
||||||
return {
|
return {
|
||||||
icon: function() { return filter.find('.d-icon'); },
|
icon: function() {
|
||||||
exists: function() { return exists(filter); },
|
return filter.find(".d-icon");
|
||||||
el: function() { return filter; }
|
},
|
||||||
|
exists: function() {
|
||||||
|
return exists(filter);
|
||||||
|
},
|
||||||
|
el: function() {
|
||||||
|
return filter;
|
||||||
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -85,24 +139,40 @@ function selectKit(selector) { // eslint-disable-line no-unused-vars
|
|||||||
options = options || {};
|
options = options || {};
|
||||||
|
|
||||||
andThen(function() {
|
andThen(function() {
|
||||||
var type = options.type || 'keydown';
|
var type = options.type || "keydown";
|
||||||
var event = jQuery.Event(type);
|
var event = jQuery.Event(type);
|
||||||
event.keyCode = keyCode;
|
event.keyCode = keyCode;
|
||||||
if (options && options.metaKey) { event.metaKey = true; }
|
if (options && options.metaKey) {
|
||||||
|
event.metaKey = true;
|
||||||
|
}
|
||||||
find(eventSelector).trigger(event);
|
find(eventSelector).trigger(event);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
down: function(target) { createEvent(target, 40); },
|
down: function(target) {
|
||||||
up: function(target) { createEvent(target, 38); },
|
createEvent(target, 40);
|
||||||
escape: function(target) { createEvent(target, 27); },
|
},
|
||||||
enter: function(target) { createEvent(target, 13); },
|
up: function(target) {
|
||||||
tab: function(target) { createEvent(target, 9); },
|
createEvent(target, 38);
|
||||||
backspace: function(target) { createEvent(target, 8); },
|
},
|
||||||
selectAll: function(target) { createEvent(target, 65, {metaKey: true}); },
|
escape: function(target) {
|
||||||
};
|
createEvent(target, 27);
|
||||||
|
},
|
||||||
|
enter: function(target) {
|
||||||
|
createEvent(target, 13);
|
||||||
|
},
|
||||||
|
tab: function(target) {
|
||||||
|
createEvent(target, 9);
|
||||||
|
},
|
||||||
|
backspace: function(target) {
|
||||||
|
createEvent(target, 8);
|
||||||
|
},
|
||||||
|
selectAll: function(target) {
|
||||||
|
createEvent(target, 65, { metaKey: true });
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
expandAwait: function() {
|
expandAwait: function() {
|
||||||
@ -114,6 +184,10 @@ function selectKit(selector) { // eslint-disable-line no-unused-vars
|
|||||||
return selectKit(selector);
|
return selectKit(selector);
|
||||||
},
|
},
|
||||||
|
|
||||||
|
collapseAwait: function() {
|
||||||
|
return collapseSelectKit(selector);
|
||||||
|
},
|
||||||
|
|
||||||
collapse: function() {
|
collapse: function() {
|
||||||
collapseSelectKit(selector);
|
collapseSelectKit(selector);
|
||||||
return selectKit(selector);
|
return selectKit(selector);
|
||||||
@ -143,57 +217,75 @@ function selectKit(selector) { // eslint-disable-line no-unused-vars
|
|||||||
return selectKit(selector);
|
return selectKit(selector);
|
||||||
},
|
},
|
||||||
|
|
||||||
|
selectNoneRowAwait: function() {
|
||||||
|
return selectKitSelectNoneRow(selector);
|
||||||
|
},
|
||||||
|
|
||||||
fillInFilter: function(filter) {
|
fillInFilter: function(filter) {
|
||||||
selectKitFillInFilter(filter, selector);
|
selectKitFillInFilter(filter, selector);
|
||||||
return selectKit(selector);
|
return selectKit(selector);
|
||||||
},
|
},
|
||||||
|
|
||||||
keyboard: function() { return keyboardHelper(selector); },
|
fillInFilterAwait: function(filter) {
|
||||||
|
return selectKitFillInFilter(filter, selector);
|
||||||
|
},
|
||||||
|
|
||||||
|
keyboard: function() {
|
||||||
|
return keyboardHelper(selector);
|
||||||
|
},
|
||||||
|
|
||||||
isExpanded: function() {
|
isExpanded: function() {
|
||||||
return find(selector).hasClass('is-expanded');
|
return find(selector).hasClass("is-expanded");
|
||||||
},
|
},
|
||||||
|
|
||||||
isFocused: function() {
|
isFocused: function() {
|
||||||
return find(selector).hasClass('is-focused');
|
return find(selector).hasClass("is-focused");
|
||||||
},
|
},
|
||||||
|
|
||||||
isHidden: function() {
|
isHidden: function() {
|
||||||
return find(selector).hasClass('is-hidden');
|
return find(selector).hasClass("is-hidden");
|
||||||
},
|
},
|
||||||
|
|
||||||
header: function() {
|
header: function() {
|
||||||
return headerHelper(find(selector).find('.select-kit-header'));
|
return headerHelper(find(selector).find(".select-kit-header"));
|
||||||
},
|
},
|
||||||
|
|
||||||
filter: function() {
|
filter: function() {
|
||||||
return filterHelper(find(selector).find('.select-kit-filter'));
|
return filterHelper(find(selector).find(".select-kit-filter"));
|
||||||
},
|
},
|
||||||
|
|
||||||
rows: function() {
|
rows: function() {
|
||||||
return find(selector).find('.select-kit-row');
|
return find(selector).find(".select-kit-row");
|
||||||
},
|
},
|
||||||
|
|
||||||
rowByValue: function(value) {
|
rowByValue: function(value) {
|
||||||
return rowHelper(find(selector).find('.select-kit-row[data-value="' + value + '"]'));
|
return rowHelper(
|
||||||
|
find(selector).find('.select-kit-row[data-value="' + value + '"]')
|
||||||
|
);
|
||||||
},
|
},
|
||||||
|
|
||||||
rowByName: function(name) {
|
rowByName: function(name) {
|
||||||
return rowHelper(find(selector).find('.select-kit-row[data-name="' + name + '"]'));
|
return rowHelper(
|
||||||
|
find(selector).find('.select-kit-row[data-name="' + name + '"]')
|
||||||
|
);
|
||||||
},
|
},
|
||||||
|
|
||||||
rowByIndex: function(index) {
|
rowByIndex: function(index) {
|
||||||
return rowHelper(find(selector).find('.select-kit-row:eq(' + index + ')'));
|
return rowHelper(
|
||||||
|
find(selector).find(".select-kit-row:eq(" + index + ")")
|
||||||
|
);
|
||||||
},
|
},
|
||||||
|
|
||||||
el: function() { return find(selector); },
|
el: function() {
|
||||||
|
return find(selector);
|
||||||
|
},
|
||||||
|
|
||||||
noneRow: function() {
|
noneRow: function() {
|
||||||
return rowHelper(find(selector).find('.select-kit-row.none'));
|
return rowHelper(find(selector).find(".select-kit-row.none"));
|
||||||
},
|
},
|
||||||
|
|
||||||
validationMessage: function() {
|
validationMessage: function() {
|
||||||
var validationMessage = find(selector).find('.validation-message');
|
var validationMessage = find(selector).find(".validation-message");
|
||||||
|
|
||||||
if (validationMessage.length) {
|
if (validationMessage.length) {
|
||||||
return validationMessage.html().trim();
|
return validationMessage.html().trim();
|
||||||
@ -203,13 +295,15 @@ function selectKit(selector) { // eslint-disable-line no-unused-vars
|
|||||||
},
|
},
|
||||||
|
|
||||||
selectedRow: function() {
|
selectedRow: function() {
|
||||||
return rowHelper(find(selector).find('.select-kit-row.is-selected'));
|
return rowHelper(find(selector).find(".select-kit-row.is-selected"));
|
||||||
},
|
},
|
||||||
|
|
||||||
highlightedRow: function() {
|
highlightedRow: function() {
|
||||||
return rowHelper(find(selector).find('.select-kit-row.is-highlighted'));
|
return rowHelper(find(selector).find(".select-kit-row.is-highlighted"));
|
||||||
},
|
},
|
||||||
|
|
||||||
exists: function() { return exists(selector); }
|
exists: function() {
|
||||||
|
return exists(selector);
|
||||||
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user