mirror of
https://github.com/discourse/discourse-subscriptions.git
synced 2025-03-07 01:59:35 +00:00
11 lines
212 B
JavaScript
11 lines
212 B
JavaScript
import { acceptance } from "helpers/qunit-helpers";
|
|
acceptance("Discourse Patrons", { loggedIn: true });
|
|
|
|
test("the page loads", assert => {
|
|
visit("/patrons");
|
|
|
|
andThen(() => {
|
|
assert.ok(true);
|
|
});
|
|
});
|