10 lines
247 B
JavaScript
10 lines
247 B
JavaScript
import dateHelpers from '../../../utils/date-helpers';
|
|
import { module, test } from 'qunit';
|
|
|
|
module('dateHelpers');
|
|
|
|
// Replace this with your real tests.
|
|
test('it works', function(assert) {
|
|
var result = dateHelpers();
|
|
assert.ok(result);
|
|
});
|