You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
consul/ui/packages/consul-ui/tests/integration/helpers/is-href-test.js

23 lines
591 B

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: BUSL-1.1
*/
import { module, skip } from 'qunit';
import { setupRenderingTest } from 'ember-qunit';
import { render } from '@ember/test-helpers';
import hbs from 'htmlbars-inline-precompile';
module('Integration | Helper | is-href', function (hooks) {
setupRenderingTest(hooks);
// Replace this with your real tests.
skip('it renders', async function (assert) {
this.set('inputValue', '1234');
await render(hbs`{{is-href inputValue}}`);
assert.equal(this.element.textContent.trim(), '1234');
});
});