mirror of
https://github.com/discourse/discourse-subscriptions.git
synced 2025-02-08 04:38:09 +00:00
13 lines
268 B
JavaScript
13 lines
268 B
JavaScript
import { acceptance } from "helpers/qunit-helpers";
|
|
|
|
acceptance("Discourse Patrons");
|
|
|
|
QUnit.test("plugin outlets", async assert => {
|
|
await visit("/");
|
|
|
|
assert.ok(
|
|
$("#navigation-bar .discourse-patrons-subscribe").length,
|
|
"has a subscribe button"
|
|
);
|
|
});
|