Skip to content

Commit

Permalink
DEV: re-enable test skipped in 7dce4bf
Browse files Browse the repository at this point in the history
Leak in lib:sharing tests was the likely cause of failure.
  • Loading branch information
pmusaraj committed Jul 20, 2020
1 parent 0b800d3 commit 0f64057
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion test/javascripts/acceptance/topic-quote-button-test.js
Expand Up @@ -81,7 +81,7 @@ QUnit.test(
}
);

QUnit.skip(
QUnit.test(
"Shows single share button when site setting only has one item",
async function(assert) {
this.siteSettings.share_quote_buttons = "twitter";
Expand Down
3 changes: 3 additions & 0 deletions test/javascripts/lib/sharing-test.js
Expand Up @@ -3,6 +3,9 @@ import Sharing from "discourse/lib/sharing";
QUnit.module("lib:sharing", {
beforeEach() {
Sharing._reset();
},
afterEach() {
Sharing._reset();
}
});

Expand Down

0 comments on commit 0f64057

Please sign in to comment.