10 lines
267 B
JavaScript
10 lines
267 B
JavaScript
import userCanEdit from '../../../utils/user-can-edit';
|
|
import { module, test } from 'qunit';
|
|
|
|
module('Unit | Utility | user can edit');
|
|
|
|
// Replace this with your real tests.
|
|
test('it works', function(assert) {
|
|
var result = userCanEdit();
|
|
assert.ok(result);
|
|
});
|