mirror of
https://github.com/discourse/discourse.git
synced 2025-03-03 05:31:16 +08:00
DEV: use Qunit.skip to skip a test
commented out code tends to get forgotten, at least with skip we can alert on it.
This commit is contained in:
parent
67b96ad2ff
commit
2f8f801970
@ -18,15 +18,15 @@ QUnit.test("does not display uncategorized if not allowed", async assert => {
|
|||||||
assert.ok(categoryChooser.rowByIndex(0).name() !== "uncategorized");
|
assert.ok(categoryChooser.rowByIndex(0).name() !== "uncategorized");
|
||||||
});
|
});
|
||||||
|
|
||||||
// TO-DO: fix the test to work with new code to land on category page
|
// TODO: fix the test to work with new code to land on category page
|
||||||
// (https://github.com/discourse/discourse/commit/7d9c97d66141d35d00258fe544211d9fd7f79a76)
|
// (https://github.com/discourse/discourse/commit/7d9c97d66141d35d00258fe544211d9fd7f79a76)
|
||||||
// QUnit.test("prefill category when category_id is set", async assert => {
|
QUnit.skip("prefill category when category_id is set", async assert => {
|
||||||
// await visit("/new-topic?category_id=1");
|
await visit("/new-topic?category_id=1");
|
||||||
|
|
||||||
// assert.equal(
|
assert.equal(
|
||||||
// selectKit(".category-chooser")
|
selectKit(".category-chooser")
|
||||||
// .header()
|
.header()
|
||||||
// .value(),
|
.value(),
|
||||||
// 1
|
1
|
||||||
// );
|
);
|
||||||
// });
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user