try and get the js tests to actually run

This commit is contained in:
Rimian Perkins
2019-09-12 07:51:40 +10:00
parent 36c1731565
commit fb372703a2
4 changed files with 10 additions and 120 deletions
@@ -0,0 +1,10 @@
import { acceptance } from "helpers/qunit-helpers";
acceptance("Discourse Patrons", { loggedIn: true });
test("the page loads", assert => {
visit("/patrons");
andThen(() => {
assert.ok(true);
});
});