fineui是帆软报表和BI产品线所使用的前端框架。
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
/**
|
|
|
|
* Created by windy on 2018/01/23.
|
|
|
|
*/
|
|
|
|
describe("TextTest", function () {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* test_author_windy
|
|
|
|
*/
|
|
|
|
it("setText", function () {
|
|
|
|
var text = BI.Test.createWidget({
|
|
|
|
type: "bi.text"
|
|
|
|
});
|
|
|
|
text.setText("AAA");
|
|
|
|
expect(text.element.text()).to.equal("AAA");
|
|
|
|
text.destroy();
|
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
|
|
|
* test_author_windy
|
|
|
|
*/
|
|
|
|
it("setStyle", function () {
|
|
|
|
var text = BI.Test.createWidget({
|
|
|
|
type: "bi.text"
|
|
|
|
});
|
|
|
|
text.setStyle({"color": "red"});
|
|
|
|
expect(text.element.getStyle("color")).to.equal("rgb(255, 0, 0)");
|
|
|
|
text.destroy();
|
|
|
|
});
|
|
|
|
});
|