datetime-formats-test.js 263 B

12345678910
  1. import datetimeFormats from '../../../utils/datetime-formats';
  2. import { module, test } from 'qunit';
  3. module('datetimeFormats');
  4. // Replace this with your real tests.
  5. test('it works', function(assert) {
  6. var result = datetimeFormats();
  7. assert.ok(result);
  8. });