DEV: re-enable test skipped in 7dce4bfd

Leak in lib:sharing tests was the likely cause of failure.
This commit is contained in:
Penar Musaraj 2020-07-20 09:55:30 -04:00
parent 0b800d307f
commit 0f6405745a
No known key found for this signature in database
GPG Key ID: E390435D881FF0F7
2 changed files with 4 additions and 1 deletions

View File

@ -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";

View File

@ -3,6 +3,9 @@ import Sharing from "discourse/lib/sharing";
QUnit.module("lib:sharing", {
beforeEach() {
Sharing._reset();
},
afterEach() {
Sharing._reset();
}
});