windy
5 years ago
4 changed files with 103 additions and 0 deletions
@ -0,0 +1,47 @@ |
|||||||
|
/** |
||||||
|
* @author windy |
||||||
|
* @version 2.0 |
||||||
|
* Created by windy on 2020/3/9 |
||||||
|
*/ |
||||||
|
describe("MessageTest", function () { |
||||||
|
|
||||||
|
/** |
||||||
|
* test_author_windy |
||||||
|
*/ |
||||||
|
it("alert", function (done) { |
||||||
|
BI.Msg.alert("message", "ASASASASA"); |
||||||
|
var body = BI.Widget._renderEngine.createElement("body"); |
||||||
|
expect(body.find(".bi-message-depend").length).to.equal(1); |
||||||
|
BI.nextTick(function () { |
||||||
|
body.find(".bi-message-depend .bi-button").click(); |
||||||
|
expect(body.find(".bi-message-depend").length).to.equal(0); |
||||||
|
done(); |
||||||
|
}); |
||||||
|
}); |
||||||
|
|
||||||
|
/** |
||||||
|
* test_author_windy |
||||||
|
*/ |
||||||
|
it("toast_hand_close", function (done) { |
||||||
|
BI.Msg.toast("message", { |
||||||
|
autoClose: false |
||||||
|
}); |
||||||
|
var body = BI.Widget._renderEngine.createElement("body"); |
||||||
|
expect(body.find(".bi-toast").length).to.equal(1); |
||||||
|
BI.nextTick(function () { |
||||||
|
body.find(".bi-toast .bi-icon-button").click(); |
||||||
|
expect(body.find(".bi-toast").length).to.equal(0); |
||||||
|
done(); |
||||||
|
}); |
||||||
|
}); |
||||||
|
|
||||||
|
/** |
||||||
|
* test_author_windy |
||||||
|
*/ |
||||||
|
it("toast_auto_close", function () { |
||||||
|
BI.Msg.toast("message"); |
||||||
|
var body = BI.Widget._renderEngine.createElement("body"); |
||||||
|
expect(body.find(".bi-toast").length).to.equal(1); |
||||||
|
}); |
||||||
|
}); |
||||||
|
|
@ -0,0 +1,42 @@ |
|||||||
|
/** |
||||||
|
* @author windy |
||||||
|
* @version 2.0 |
||||||
|
* Created by windy on 2020/3/10 |
||||||
|
*/ |
||||||
|
|
||||||
|
describe("HtmlTest", function () { |
||||||
|
|
||||||
|
/** |
||||||
|
* test_author_windy |
||||||
|
*/ |
||||||
|
it("html_h1", function () { |
||||||
|
var a = BI.Test.createWidget({ |
||||||
|
type: "bi.html", |
||||||
|
text: "<h1>在bi.html标签中使用html原生标签</h1>" |
||||||
|
}); |
||||||
|
expect(a.element.find("h1").length).to.equal(1); |
||||||
|
a.destroy(); |
||||||
|
}); |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* test_author_windy |
||||||
|
*/ |
||||||
|
it("html测试属性方法", function () { |
||||||
|
var a = BI.Test.createWidget({ |
||||||
|
type: "bi.html", |
||||||
|
text: "<h1>在bi.html标签中使用html原生标签</h1>", |
||||||
|
height: 200, |
||||||
|
width: 200, |
||||||
|
value: "1", |
||||||
|
highLight: true, |
||||||
|
hgap: 10, |
||||||
|
vgap: 10, |
||||||
|
handler: BI.emptyFn |
||||||
|
}); |
||||||
|
a.setValue("DDDDD"); |
||||||
|
a.setStyle({"background-color": "red"}); |
||||||
|
expect(a.text.element.css("background-color")).to.equal("rgb(255, 0, 0)"); |
||||||
|
a.destroy(); |
||||||
|
}); |
||||||
|
}); |
Loading…
Reference in new issue