mirror of
https://github.com/status-im/consul.git
synced 2025-01-22 11:40:06 +00:00
0807a5ba14
* Add delay svg icon * Create ConsulLockSessionList component * Implement ConsulLockSession component in Lock Sessions tab * Create format-time helper * Add Invalidate button and fix up styling * Fixup and add additional tests
27 lines
813 B
JavaScript
27 lines
813 B
JavaScript
import { module, skip } from 'qunit';
|
|
import { setupRenderingTest } from 'ember-qunit';
|
|
import { render } from '@ember/test-helpers';
|
|
import { hbs } from 'ember-cli-htmlbars';
|
|
|
|
module('Integration | Component | consul-lock-session-list', function(hooks) {
|
|
setupRenderingTest(hooks);
|
|
|
|
skip('it renders', async function(assert) {
|
|
// Set any properties with this.set('myProperty', 'value');
|
|
// Handle any actions with this.set('myAction', function(val) { ... });
|
|
|
|
await render(hbs`<ConsulLockSessionList />`);
|
|
|
|
assert.equal(this.element.textContent.trim(), '');
|
|
|
|
// Template block usage:
|
|
await render(hbs`
|
|
<ConsulLockSessionList>
|
|
template block text
|
|
</ConsulLockSessionList>
|
|
`);
|
|
|
|
assert.equal(this.element.textContent.trim(), 'template block text');
|
|
});
|
|
});
|