open-consul/ui/packages/consul-ui/tests/integration/components/jwt-source-test.js

18 lines
569 B
JavaScript

import { module, skip } from 'qunit';
import { setupRenderingTest } from 'ember-qunit';
import { render } from '@ember/test-helpers';
import hbs from 'htmlbars-inline-precompile';
module('Integration | Component | jwt-source', 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`<JwtSource />`);
assert.equal(this.element.textContent.trim(), '');
});
});