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

33 lines
690 B
JavaScript

import { moduleForComponent, test } from 'ember-qunit';
import hbs from 'htmlbars-inline-precompile';
moduleForComponent('css-var', 'helper:css-var', {
integration: true,
});
// Replace this with your real tests.
test("it renders nothing if the variable doesn't exist", function(assert) {
this.set('inputValue', '1234');
this.render(hbs`{{css-var inputValue}}`);
assert.equal(
this.$()
.text()
.trim(),
''
);
});
test("it renders a default if the variable doesn't exist", function(assert) {
this.set('inputValue', '1234');
this.render(hbs`{{css-var inputValue 'none'}}`);
assert.equal(
this.$()
.text()
.trim(),
'none'
);
});