mirror of https://github.com/hashicorp/consul
18 lines
550 B
JavaScript
18 lines
550 B
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 | token/is-anonymous', function(hooks) {
|
||
![]() |
setupRenderingTest(hooks);
|
||
![]() |
|
||
![]() |
// Replace this with your real tests.
|
||
|
test('it renders', async function(assert) {
|
||
|
this.set('inputValue', { AccessorID: '00000' });
|
||
![]() |
|
||
![]() |
await render(hbs`{{token/is-anonymous inputValue}}`);
|
||
![]() |
|
||
![]() |
assert.equal(this.element.textContent.trim(), 'false');
|
||
![]() |
});
|
||
![]() |
});
|