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

18 lines
514 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 | Helper | svg-curve', function(hooks) {
setupRenderingTest(hooks);
// Replace this with your real tests.
skip('it renders', async function(assert) {
this.set('inputValue', '1234');
await render(hbs`{{svg-curve inputValue}}`);
assert.equal(this.element.textContent.trim(), '1234');
});
});