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

18 lines
501 B
JavaScript

import { module, test } from 'qunit';
import { setupRenderingTest } from 'ember-qunit';
import { render } from '@ember/test-helpers';
import hbs from 'htmlbars-inline-precompile';
module('helper:env', function(hooks) {
setupRenderingTest(hooks);
// Replace this with your real tests.
test('it renders', async function(assert) {
this.set('inputValue', 'CONSUL_COPYRIGHT_URL');
await render(hbs`{{env inputValue}}`);
assert.dom('*').hasText('https://www.hashicorp.com');
});
});