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/staff-action-log-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
210 B
JavaScript

import StaffActionLog from "admin/models/staff-action-log";
QUnit.module("StaffActionLog");
QUnit.test("create", (assert) => {
assert.ok(StaffActionLog.create(), "it can be created without arguments");
});