Rough cut: compare.
This commit is contained in:
parent
adda1291c6
commit
30f8e89c40
10 changed files with 140 additions and 9 deletions
10
tests/unit/helpers/get-property-test.js
Normal file
10
tests/unit/helpers/get-property-test.js
Normal file
|
@ -0,0 +1,10 @@
|
|||
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);
|
||||
});
|
Reference in a new issue