10 lines
272 B
JavaScript
10 lines
272 B
JavaScript
import { getProperty } from '../../../helpers/get-property';
|
|
import { module, test } from 'qunit';
|
|
|
|
module('Unit | Helper | get property');
|
|
|
|
// Replace this with your real tests.
|
|
test('it works', function(assert) {
|
|
var result = getProperty(42);
|
|
assert.ok(result);
|
|
});
|