mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 03:40:00 +08:00
DEV: skips tests being the possible source of timeouts (#7623)
This commit is contained in:
parent
b3779dc377
commit
7a7d612b23
|
@ -40,7 +40,7 @@ QUnit.test("Editing the category", async assert => {
|
|||
);
|
||||
});
|
||||
|
||||
QUnit.test("Edit the description without loosing progress", async assert => {
|
||||
QUnit.skip("Edit the description without loosing progress", async assert => {
|
||||
let win = { focus: function() {} };
|
||||
let windowOpen = sandbox.stub(window, "open").returns(win);
|
||||
sandbox.stub(win, "focus");
|
||||
|
|
|
@ -89,7 +89,7 @@ QUnit.test("tracks external URLs", async assert => {
|
|||
assert.notOk(track(generateClickEventOn("a")));
|
||||
});
|
||||
|
||||
QUnit.test(
|
||||
QUnit.skip(
|
||||
"tracks external URLs when opening in another window",
|
||||
async assert => {
|
||||
assert.expect(3);
|
||||
|
|
|
@ -99,7 +99,7 @@ QUnit.test("tracks external URLs", async assert => {
|
|||
assert.notOk(track(generateClickEventOn("a")));
|
||||
});
|
||||
|
||||
QUnit.test(
|
||||
QUnit.skip(
|
||||
"tracks external URLs when opening in another window",
|
||||
async assert => {
|
||||
assert.expect(3);
|
||||
|
@ -152,7 +152,7 @@ QUnit.test("does not track clicks on mailto", async assert => {
|
|||
assert.ok(track(generateClickEventOn(".mailto")));
|
||||
});
|
||||
|
||||
QUnit.test("removes the href and put it as a data attribute", async assert => {
|
||||
QUnit.skip("removes the href and put it as a data attribute", async assert => {
|
||||
Discourse.User.currentProp("external_links_in_new_tab", true);
|
||||
|
||||
assert.notOk(track(generateClickEventOn("a")));
|
||||
|
|
Loading…
Reference in New Issue
Block a user