discourse/test/javascripts/integration/components/html-safe-helper-test.js
Robin Ward 445d6ba45f REFACTOR: Move qunit tests to a different directory structure
This structure is closer to how ember-cli expects tests to be placed. It
is not their final position, just the first step towards it.
2020-09-30 10:36:49 -04:00

15 lines
364 B
JavaScript

import componentTest from "helpers/component-test";
moduleForComponent("html-safe-helper", { integration: true });
componentTest("default", {
template: "{{html-safe string}}",
beforeEach() {
this.set("string", "<p class='cookies'>biscuits</p>");
},
async test(assert) {
assert.ok(exists("p.cookies"), "it displays the string as html");
},
});