Files
vault/ui/tests/integration/helpers/date-format-test.js
Angel Garbarino 0a20750c09 Updating date-fns library from 1.x to 2.x (#10848)
* first round of fixes and setup

* test fixes

* fix dumb options on new method

* test fix

* clean up

* fixes

* clean up

* handle utc time

* add changelog
2021-02-08 13:13:00 -07:00

38 lines
1.4 KiB
JavaScript

import { module, test } from 'qunit';
import { setupRenderingTest } from 'ember-qunit';
import { render } from '@ember/test-helpers';
import hbs from 'htmlbars-inline-precompile';
module('Integration | Helper | date-format', function(hooks) {
setupRenderingTest(hooks);
test('it is able to format a date object', async function(assert) {
let today = new Date();
this.set('today', today);
await render(hbs`<p data-test-date-format>Date: {{date-format today "yyyy"}}</p>`);
assert
.dom('[data-test-date-format]')
.includesText(today.getFullYear(), 'it renders the date in the year format');
});
test('it supports date timestamps', async function(assert) {
let today = new Date().getTime();
this.set('today', today);
await render(hbs`<p class="date-format">{{date-format today 'hh:mm:ss'}}</p>`);
let formattedDate = document.querySelector('.date-format').innerText;
assert.ok(formattedDate.match(/^\d{2}:\d{2}:\d{2}$/));
});
test('it supports date strings', async function(assert) {
let todayString = new Date().getFullYear().toString();
this.set('todayString', todayString);
await render(hbs`<p data-test-date-format>Date: {{date-format todayString "yyyy"}}</p>`);
assert
.dom('[data-test-date-format]')
.includesText(todayString, 'it renders the a date if passed in as a string');
});
});