19 lines
733 B
TypeScript
Raw Normal View History

2019-08-31 20:51:14 -07:00
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 | ms-time-as-unix', function(hooks): void {
2019-08-31 20:51:14 -07:00
setupRenderingTest(hooks);
test('it works as expected', async function(assert): Promise<void> {
2019-08-31 20:51:14 -07:00
this.set('inputValue', '12345678');
await render(hbs`{{ms-time-as-unix inputValue}}`);
assert.equal(this.element.textContent?.trim(), '12346', 'works for string inputs');
2019-08-31 20:51:14 -07:00
this.set('inputValue', 12345678);
await render(hbs`{{ms-time-as-unix inputValue}}`);
assert.equal(this.element.textContent?.trim(), '12346', 'works for numerical inputs');
2019-08-31 20:51:14 -07:00
});
});