mirror of
https://github.com/discourse/discourse.git
synced 2025-09-06 10:50:21 +08:00
15 lines
320 B
Text
15 lines
320 B
Text
|
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"
|
||
|
);
|
||
|
}
|
||
|
});
|