This repository has been archived on 2025-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
hymenobacterdotinfo/tests/unit/utils/user-can-add-test.js
2015-07-04 11:34:31 -07:00

10 lines
263 B
JavaScript

import userCanAdd from '../../../utils/user-can-add';
import { module, test } from 'qunit';
module('Unit | Utility | user can add');
// Replace this with your real tests.
test('it works', function(assert) {
var result = userCanAdd();
assert.ok(result);
});