12 lines
332 B
JavaScript
12 lines
332 B
JavaScript
import { acceptance } from "discourse/tests/helpers/qunit-helpers";
|
|
import { test } from "qunit";
|
|
|
|
acceptance("current-user", function (needs) {
|
|
needs.user();
|
|
|
|
test("currentUser has appEvents", function (assert) {
|
|
let currentUser = this.container.lookup("current-user:main");
|
|
assert.ok(currentUser.appEvents);
|
|
});
|
|
});
|