discourse/test/javascripts/models/staff-action-log-test.js.es6

7 lines
207 B
Plaintext
Raw Normal View History

import StaffActionLog from 'admin/models/staff-action-log';
2017-06-15 01:57:58 +08:00
QUnit.module("StaffActionLog");
2013-10-30 01:01:42 +08:00
2017-06-15 01:57:58 +08:00
QUnit.test("create", assert => {
assert.ok(StaffActionLog.create(), "it can be created without arguments");
});