Browse Source
* commit 'd69064aecc92c42829c56587aefba1835c43e24f': REPORT-28558 fix: 修复了连续多次调用BI.Msg.alert后只有最后弹出的可以关闭的问题 && 单测es6
windy
5 years ago
5 changed files with 91 additions and 6 deletions
@ -0,0 +1,41 @@
|
||||
/** |
||||
* @author windy |
||||
* @version 2.0 |
||||
* Created by windy on 2020/3/20 |
||||
*/ |
||||
describe("GridTest", function () { |
||||
|
||||
/** |
||||
* test_author_windy |
||||
*/ |
||||
it("grid", function () { |
||||
var items = []; |
||||
var rowCount = 1000, columnCount = 100; |
||||
for (var i = 0; i < rowCount; i++) { |
||||
items[i] = []; |
||||
for (var j = 0; j < columnCount; j++) { |
||||
items[i][j] = { |
||||
type: "bi.label", |
||||
text: i + "-" + j |
||||
}; |
||||
} |
||||
} |
||||
var grid = BI.createWidget({ |
||||
type: "bi.grid_view", |
||||
width: 400, |
||||
height: 300, |
||||
estimatedRowSize: 30, |
||||
estimatedColumnSize: 100, |
||||
items: items, |
||||
scrollTop: 100, |
||||
rowHeightGetter: function () { |
||||
return 30; |
||||
}, |
||||
columnWidthGetter: function () { |
||||
return 100; |
||||
} |
||||
}); |
||||
// TODO 性能展示类控件,不知道要测啥,标记一下
|
||||
grid.destroy(); |
||||
}); |
||||
}); |
@ -0,0 +1,21 @@
|
||||
/** |
||||
* @author windy |
||||
* @version 2.0 |
||||
* Created by windy on 2020/3/20 |
||||
*/ |
||||
describe("FarbtasticTest", function () { |
||||
|
||||
/** |
||||
* test_author_windy |
||||
*/ |
||||
it("Farbtastic", function () { |
||||
var a = BI.Test.createWidget({ |
||||
type: "bi.farbtastic", |
||||
height: 200, |
||||
width: 200 |
||||
}); |
||||
a.setValue("#d56c6c"); |
||||
expect(a.getValue()).to.equal("#d56c6c"); |
||||
a.destroy(); |
||||
}); |
||||
}); |
Loading…
Reference in new issue