open-consul/ui-v2/tests/integration/helpers/is-href-test.js

17 lines
419 B
JavaScript

import { module, skip } from 'qunit';
import { setupRenderingTest } from 'ember-qunit';
import hbs from 'htmlbars-inline-precompile';
module('helper:is-href', function(hooks) {
setupRenderingTest(hooks);
// Replace this with your real tests.
skip('it renders', function(assert) {
this.set('inputValue', '1234');
this.render(hbs`{{is-href inputValue}}`);
assert.dom('*').hasText('1234');
});
});