discourse/test/javascripts/components/ace-editor-test.js.es6

51 lines
1.3 KiB
Plaintext
Raw Normal View History

2018-06-15 11:03:24 -04:00
import componentTest from "helpers/component-test";
2018-06-15 11:03:24 -04:00
moduleForComponent("ace-editor", { integration: true });
2018-06-15 11:03:24 -04:00
componentTest("css editor", {
template: '{{ace-editor mode="css"}}',
test(assert) {
2017-06-14 13:57:58 -04:00
assert.expect(1);
assert.ok(find(".ace_editor").length, "it renders the ace editor");
}
});
2018-06-15 11:03:24 -04:00
componentTest("html editor", {
2016-07-05 11:03:10 -04:00
template: '{{ace-editor mode="html" content="<b>wat</b>"}}',
test(assert) {
2017-06-14 13:57:58 -04:00
assert.expect(1);
assert.ok(find(".ace_editor").length, "it renders the ace editor");
}
});
2018-06-15 11:03:24 -04:00
componentTest("sql editor", {
template: '{{ace-editor mode="sql" content="SELECT * FROM users"}}',
test(assert) {
assert.expect(1);
assert.ok(find(".ace_editor").length, "it renders the ace editor");
}
});
2018-06-15 11:03:24 -04:00
componentTest("disabled editor", {
template:
'{{ace-editor mode="sql" content="SELECT * FROM users" disabled=true}}',
test(assert) {
const $ace = find(".ace_editor");
assert.expect(3);
2018-06-15 11:03:24 -04:00
assert.ok($ace.length, "it renders the ace editor");
assert.equal(
$ace
.parent()
.data()
.editor.getReadOnly(),
true,
"it sets ACE to read-only mode"
);
assert.equal(
$ace.parent().attr("data-disabled"),
"true",
"ACE wrapper has `data-disabled` attribute set to true"
);
}
});