2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00
discourse/test/javascripts/components/image-uploader-test.js.es6

15 lines
320 B
Text
Raw Normal View History

import componentTest from "helpers/component-test";
moduleForComponent("image-uploader", { integration: true });
componentTest("without image", {
template: "{{image-uploader}}",
test(assert) {
assert.equal(
this.$(".d-icon-trash-o").length,
0,
"it does not display trash icon"
);
}
});