mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-11-01 11:08:10 +00:00
* 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
38 lines
1.4 KiB
JavaScript
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');
|
|
});
|
|
});
|