Add moment.js support
This commit is contained in:
parent
f8d75d821f
commit
c886a51b7d
6 changed files with 27 additions and 6 deletions
10
tests/unit/utils/date-helpers-test.js
Normal file
10
tests/unit/utils/date-helpers-test.js
Normal file
|
@ -0,0 +1,10 @@
|
|||
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);
|
||||
});
|
Reference in a new issue