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/app/assets/javascripts/discourse/tests/unit/models/staff-action-log-test.js
2020-12-01 15:31:26 -03:00

9 lines
281 B
JavaScript

import { module, test } from "qunit";
import StaffActionLog from "admin/models/staff-action-log";
module("Unit | Model | staff-action-log", function () {
test("create", function (assert) {
assert.ok(StaffActionLog.create(), "it can be created without arguments");
});
});