33 lines
1.1 KiB
JavaScript
33 lines
1.1 KiB
JavaScript
import { module, test } from 'qunit';
|
|
import { setupRenderingTest } from 'ember-qunit';
|
|
import { render } from '@ember/test-helpers';
|
|
import hbs from 'htmlbars-inline-precompile';
|
|
import { addMinutes } from 'date-fns';
|
|
|
|
module('Integration | Component | token-expire-warning', function(hooks) {
|
|
setupRenderingTest(hooks);
|
|
|
|
test('it renders a warning when the token is expired', async function(assert) {
|
|
const expirationDate = Date.now();
|
|
this.set('expirationDate', expirationDate);
|
|
|
|
await render(hbs`<TokenExpireWarning @expirationDate={{expirationDate}}/>`);
|
|
|
|
assert.dom().includesText('Your auth token expired on');
|
|
});
|
|
|
|
test('it does not render a warning when the token is not expired', async function(assert) {
|
|
const expirationDate = addMinutes(Date.now(), 30);
|
|
this.set('expirationDate', expirationDate);
|
|
|
|
await render(hbs`
|
|
<TokenExpireWarning @expirationDate={{expirationDate}}>
|
|
<p>Do not worry, your token has not expired.</p>
|
|
</TokenExpireWarning>
|
|
`);
|
|
|
|
assert.dom().doesNotIncludeText('Your auth token expired on');
|
|
assert.dom().includesText('Do not worry');
|
|
});
|
|
});
|