This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/test/javascripts/unit/models/invite-test.js
Robin Ward 445d6ba45f REFACTOR: Move qunit tests to a different directory structure
This structure is closer to how ember-cli expects tests to be placed. It
is not their final position, just the first step towards it.
2020-09-30 10:36:49 -04:00

8 lines
186 B
JavaScript

import Invite from "discourse/models/invite";
QUnit.module("model:invite");
QUnit.test("create", (assert) => {
assert.ok(Invite.create(), "it can be created without arguments");
});