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/helpers/get-property-test.js
2015-06-17 14:40:54 -08:00

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);
});