2023-03-14 13:18:55 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) HashiCorp, Inc.
|
|
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
|
|
*/
|
|
|
|
|
2020-05-29 15:42:46 +00:00
|
|
|
import { module, skip } from 'qunit';
|
|
|
|
import { setupRenderingTest } from 'ember-qunit';
|
|
|
|
import { render } from '@ember/test-helpers';
|
|
|
|
import { hbs } from 'ember-cli-htmlbars';
|
|
|
|
|
2022-09-15 08:43:17 +00:00
|
|
|
module('Integration | Helper | searchable', function (hooks) {
|
2020-05-29 15:42:46 +00:00
|
|
|
setupRenderingTest(hooks);
|
|
|
|
|
|
|
|
// Replace this with your real tests.
|
2022-09-15 08:43:17 +00:00
|
|
|
skip('it renders', async function (assert) {
|
2020-05-29 15:42:46 +00:00
|
|
|
this.set('inputValue', '1234');
|
|
|
|
|
|
|
|
await render(hbs`{{searchable inputValue}}`);
|
|
|
|
|
|
|
|
assert.equal(this.element.textContent.trim(), '1234');
|
|
|
|
});
|
|
|
|
});
|