提交 3f450895 编写于 作者: L liu-xu01

ACEcommit

Signed-off-by: Nliu-xu01 <l18612094222@163.com>
上级 a0089877
......@@ -30,7 +30,7 @@ export default function badgeJsunit() {
}
describe('badgeTest', function () {
beforeEach(async function{
beforeEach(async function(done){
let options = {
uri: 'pages/Badge',
}
......@@ -47,11 +47,12 @@ export default function badgeJsunit() {
console.error("push Badge page error " + JSON.stringify(result));
}
await sleep(2)
done()
});
afterEach(async function{
await sleep(3)
console.info("await 3s ");
await sleep(1)
console.info("Badge after each called");
});
/**
......
......@@ -30,7 +30,7 @@ export default function blankJsunit() {
}
describe('BlankTest', function () {
beforeEach(async function{
beforeEach(async function(done){
let options = {
uri: 'pages/Blank',
}
......@@ -47,11 +47,12 @@ export default function blankJsunit() {
console.error("push Blank page error " + JSON.stringify(result));
}
await sleep(2)
done()
});
afterEach(async function{
await sleep(3)
console.info("await 3s ");
await sleep(1)
console.info("Blank after each called");
});
/**
......
......@@ -30,7 +30,7 @@ export default function buttonJsunit() {
}
describe('buttonTest', function () {
beforeEach(async function{
beforeEach(async function(done){
let options = {
uri: 'pages/Button',
}
......@@ -47,11 +47,12 @@ export default function buttonJsunit() {
console.error("push Button page error " + JSON.stringify(result));
}
await sleep(2)
done()
});
afterEach(async function{
await sleep(3)
console.info("await 3s ");
await sleep(1)
console.info("Button after each called");
});
/**
......
......@@ -30,7 +30,7 @@ export default function columnJsunit() {
}
describe('columnTest', function () {
beforeEach(async function{
beforeEach(async function(done){
let options = {
uri: 'pages/Column',
}
......@@ -47,11 +47,12 @@ export default function columnJsunit() {
console.error("push Column page error " + JSON.stringify(result));
}
await sleep(2)
done()
});
afterEach(async function{
await sleep(3)
console.info("await 3s ");
await sleep(1)
console.info("Column after each called");
});
/**
......
......@@ -30,7 +30,7 @@ export default function columnSplitJsunit() {
}
describe('columnSplitTest', function () {
beforeEach(async function{
beforeEach(async function(done){
let options = {
uri: 'pages/ColumnSplit',
}
......@@ -47,11 +47,12 @@ export default function columnSplitJsunit() {
console.error("push ColumnSplit page error " + JSON.stringify(result));
}
await sleep(2)
done()
});
afterEach(async function{
await sleep(3)
console.info("await 3s ");
await sleep(1)
console.info("ColumnSplit after each called");
});
/**
......
......@@ -30,7 +30,7 @@ export default function counterJsunit() {
}
describe('counterTest', function () {
beforeEach(async function{
beforeEach(async function(done){
let options = {
uri: 'pages/Counter',
}
......@@ -47,11 +47,12 @@ export default function counterJsunit() {
console.error("push Counter page error " + JSON.stringify(result));
}
await sleep(2)
done()
});
afterEach(async function{
await sleep(3)
console.info("await 3s ");
await sleep(1)
console.info("Counter after each called");
});
/**
......
......@@ -30,7 +30,7 @@ export default function datapanelJsunit() {
}
describe('dataPanelTest', function () {
beforeEach(async function{
beforeEach(async function(done){
let options = {
uri: 'pages/DataPanel',
}
......@@ -47,11 +47,12 @@ export default function datapanelJsunit() {
console.error("push DataPanel page error " + JSON.stringify(result));
}
await sleep(2)
done()
});
afterEach(async function{
await sleep(3)
console.info("await 3s ");
await sleep(1)
console.info("DataPanel after each called");
});
/**
......
......@@ -30,7 +30,7 @@ export default function dividerJsunit() {
}
describe('dividerTest', function () {
beforeEach(async function{
beforeEach(async function(done){
let options = {
uri: 'pages/Divider',
}
......@@ -46,11 +46,12 @@ export default function dividerJsunit() {
console.error("push divider page error " + JSON.stringify(result));
}
await sleep(1)
done()
});
afterEach(async function{
await sleep(3)
console.info("await 3s ");
await sleep(1)
console.info("Divider after each called");
});
/**
* @tc.number SUB_ACE_BASIC_ETS_API_0750
......
......@@ -30,7 +30,7 @@ export default function flexJsunit() {
}
describe('flexTest', function () {
beforeEach(async function{
beforeEach(async function(done){
let options = {
uri: 'pages/Flex',
}
......@@ -47,11 +47,12 @@ export default function flexJsunit() {
console.error("push Flex page error " + JSON.stringify(result));
}
await sleep(2)
done()
});
afterEach(async function{
await sleep(3)
console.info("await 3s ");
await sleep(1)
console.info("Flex after each called");
});
/**
* @tc.number SUB_ACE_BASIC_ETS_API_0770
......
......@@ -30,7 +30,7 @@ export default function gridContainerJsunit() {
}
describe('gridContainerTest', function () {
beforeEach(async function{
beforeEach(async function(done){
let options = {
uri: 'pages/GridContainer',
}
......@@ -47,11 +47,12 @@ export default function gridContainerJsunit() {
console.error("push GridContainer page error " + JSON.stringify(result));
}
await sleep(1)
done()
});
afterEach(async function{
await sleep(3)
console.info("await 3s ");
await sleep(1)
console.info("GridContainer after each called");
});
/**
* @tc.number SUB_ACE_BASIC_ETS_API_0830
......
......@@ -30,7 +30,7 @@ export default function imageJsunit() {
}
describe('imageTest', function () {
beforeEach(async function{
beforeEach(async function(done){
let options = {
uri: 'pages/Image',
}
......@@ -47,11 +47,12 @@ export default function imageJsunit() {
console.error("push image page error " + JSON.stringify(result));
}
await sleep(1)
done()
});
afterEach(async function{
await sleep(3)
console.info("await 3s ");
await sleep(1)
console.info("Image after each called");
});
/**
......
......@@ -30,7 +30,7 @@ export default function panelJsunit() {
}
describe('panelTest', function () {
beforeEach(async function{
beforeEach(async function(done){
let options = {
uri: 'pages/Panel',
}
......@@ -47,11 +47,12 @@ export default function panelJsunit() {
console.error(JSON.stringify(result));
}
await sleep(1)
done()
});
afterEach(async function{
await sleep(3)
console.info("await 3s ");
await sleep(1)
console.info("Panel after each called");
});
/**
* @tc.number SUB_ACE_BASIC_ETS_API_0930
......
......@@ -30,7 +30,7 @@ export default function progressJsunit() {
}
describe('progressTest', function () {
beforeEach(async function{
beforeEach(async function(done){
let options = {
uri: 'pages/Progress',
}
......@@ -47,11 +47,12 @@ export default function progressJsunit() {
console.error("push Progress page error " + JSON.stringify(result));
}
await sleep(2)
done()
});
afterEach(async function{
await sleep(3)
console.info("await 3s ");
await sleep(1)
console.info("Progress after each called");
});
/**
......
......@@ -30,7 +30,7 @@ export default function qrcodeJsunit() {
}
describe('QrcodeTest', function () {
beforeEach(async function{
beforeEach(async function(done){
let options = {
uri: 'pages/Qrcode',
}
......@@ -47,11 +47,12 @@ export default function qrcodeJsunit() {
console.error("push Qrcode page error " + JSON.stringify(result));
}
await sleep(2)
done()
});
afterEach(async function{
await sleep(3)
console.info("await 3s ");
await sleep(1)
console.info("Qrcode after each called");
});
/**
......
......@@ -30,7 +30,7 @@ export default function ratingJsunit() {
}
describe('ratingTest', function () {
beforeEach(async function{
beforeEach(async function(done){
let options = {
uri: 'pages/Rating',
}
......@@ -47,11 +47,12 @@ export default function ratingJsunit() {
console.error("push Rating page error " + JSON.stringify(result));
}
await sleep(2)
done()
});
afterEach(async function{
await sleep(3)
console.info("await 3s ");
await sleep(1)
console.info("Rating after each called");
});
/**
......
......@@ -30,7 +30,7 @@ export default function rowSplitJsunit() {
}
describe('RowSplitTest', function () {
beforeEach(async function{
beforeEach(async function(done){
let options = {
uri: 'pages/RowSplit',
}
......@@ -47,11 +47,12 @@ export default function rowSplitJsunit() {
console.error("push RowSplit page error " + JSON.stringify(result));
}
await sleep(2)
done()
});
afterEach(async function{
await sleep(3)
console.info("await 3s ");
await sleep(1)
console.info("RowSplit after each called");
});
/**
......
......@@ -30,7 +30,7 @@ export default function ScrollJsunit() {
}
describe('scrollTest', function () {
beforeEach(async function{
beforeEach(async function(done){
let options = {
uri: 'pages/Scroll',
}
......@@ -47,11 +47,12 @@ export default function ScrollJsunit() {
console.error("push Scroll page error " + JSON.stringify(result));
}
await sleep(2)
done()
});
afterEach(async function{
await sleep(3)
console.info("await 3s ");
await sleep(1)
console.info("Scroll after each called");
});
/**
* @tc.number SUB_ACE_BASIC_ETS_API_1020
......
......@@ -30,7 +30,7 @@ export default function sliderJsunit() {
}
describe('SliderTest', function () {
beforeEach(async function{
beforeEach(async function(done){
let options = {
uri: 'pages/Slider',
}
......@@ -47,11 +47,12 @@ export default function sliderJsunit() {
console.error("push Slider page error " + JSON.stringify(result));
}
await sleep(2)
done()
});
afterEach(async function{
await sleep(3)
console.info("await 3s ");
await sleep(1)
console.info("Slider after each called");
});
/**
* @tc.number SUB_ACE_BASIC_ETS_API_1060
......
......@@ -30,7 +30,7 @@ export default function spanJsunit() {
}
describe('SpanTest', function () {
beforeEach(async function{
beforeEach(async function(done){
let options = {
uri: 'pages/Span',
}
......@@ -47,11 +47,12 @@ export default function spanJsunit() {
console.error("push Span page error " + JSON.stringify(result));
}
await sleep(2)
done()
});
afterEach(async function{
await sleep(3)
console.info("await 3s ");
await sleep(1)
console.info("Span after each called");
});
/**
* @tc.number SUB_ACE_BASIC_ETS_API_1080
......
......@@ -30,7 +30,7 @@ export default function StackJsunit() {
}
describe('StackTest', function () {
beforeEach(async function{
beforeEach(async function(done){
let options = {
uri: 'pages/Stack',
}
......@@ -47,11 +47,12 @@ export default function StackJsunit() {
console.error("push Stack page error " + JSON.stringify(result));
}
await sleep(2)
done()
});
afterEach(async function{
await sleep(3)
console.info("await 3s ");
await sleep(1)
console.info("Stack after each called");
});
/**
* @tc.number SUB_ACE_BASIC_ETS_API_1110
......
......@@ -30,7 +30,7 @@ export default function textJsunit() {
}
describe('textTest', function () {
beforeEach(async function{
beforeEach(async function(done){
let options = {
uri: 'pages/Text',
}
......@@ -47,11 +47,12 @@ export default function textJsunit() {
console.error("push Text page error " + JSON.stringify(result));
}
await sleep(2)
done()
});
afterEach(async function{
await sleep(3)
console.info("await 3s ");
await sleep(1)
console.info("Text after each called");
});
/**
* @tc.number SUB_ACE_BASIC_ETS_API_1200
......
......@@ -31,7 +31,7 @@ export default function alphabetIndexerJsunit() {
describe('alphabetIndexerTest', function () {
beforeEach(async function{
beforeEach(async function(done){
let options = {
uri: 'pages/AlphabetIndexer',
}
......@@ -48,11 +48,12 @@ export default function alphabetIndexerJsunit() {
console.error("push AlphabetIndexer page error " + JSON.stringify(result));
}
await sleep(2)
done()
});
afterEach(async function{
await sleep(3)
console.info("await 3s ");
await sleep(1)
console.info("AlphabetIndexer after each called");
});
/**
......
......@@ -31,7 +31,7 @@ export default function appStorageJsunit() {
describe('appStorageTest', function () {
beforeEach(async function{
beforeEach(async function(done){
let options = {
uri: 'pages/AppStorage',
}
......@@ -48,11 +48,12 @@ export default function appStorageJsunit() {
console.error("push AppStorage page error " + JSON.stringify(result));
}
await sleep(2)
done()
});
afterEach(async function{
await sleep(3)
console.info("await 3s ");
await sleep(1)
console.info("AppStorage after each called");
});
......
......@@ -31,7 +31,7 @@ export default function gridItemJsunit() {
describe('gridItemTest', function () {
beforeEach(async function{
beforeEach(async function(done){
let options = {
uri: 'pages/GridItem',
}
......@@ -48,11 +48,12 @@ export default function gridItemJsunit() {
console.error("push GridItem page error " + JSON.stringify(result));
}
await sleep(2)
done()
});
afterEach(async function{
await sleep(3)
console.info("await 3s ");
await sleep(1)
console.info("GridItem after each called");
});
/**
......
......@@ -31,7 +31,7 @@ export default function gridJsunit() {
describe('gridTest', function () {
beforeEach(async function{
beforeEach(async function(done){
let options = {
uri: 'pages/Grid',
}
......@@ -48,11 +48,12 @@ export default function gridJsunit() {
console.error("push Grid page error " + JSON.stringify(result));
}
await sleep(2)
done()
});
afterEach(async function{
await sleep(3)
console.info("await 3s ");
await sleep(1)
console.info("Grid after each called");
});
/**
......
......@@ -31,7 +31,7 @@ export default function hyperlinkJsunit() {
describe('hyperLinkTest', function () {
beforeEach(async function{
beforeEach(async function(done){
let options = {
uri: 'pages/HyperLink',
}
......@@ -48,11 +48,12 @@ export default function hyperlinkJsunit() {
console.error("push HyperLink page error " + JSON.stringify(result));
}
await sleep(2)
done()
});
afterEach(async function{
await sleep(3)
console.info("await 3s ");
await sleep(1)
console.info("HyperLink after each called");
});
/**
......
......@@ -32,7 +32,7 @@ export default function linkJsunit() {
describe('linkTest', function () {
beforeEach(async function{
beforeEach(async function(done){
let options = {
uri: 'pages/Link',
}
......@@ -49,11 +49,12 @@ export default function linkJsunit() {
console.error("push Link page error " + JSON.stringify(result));
}
await sleep(2)
done()
});
afterEach(async function{
await sleep(3)
console.info("await 3s ");
await sleep(1)
console.info("Link after each called");
});
/**
......
......@@ -31,7 +31,7 @@ export default function listItemJsunit() {
describe('listItemTest', function () {
beforeEach(async function{
beforeEach(async function(done){
let options = {
uri: 'pages/ListItem',
}
......@@ -48,11 +48,12 @@ export default function listItemJsunit() {
console.error("push ListItem page error " + JSON.stringify(result));
}
await sleep(2)
done()
});
afterEach(async function{
await sleep(3)
console.info("await 3s ");
await sleep(1)
console.info("ListItem after each called");
});
/**
......
......@@ -31,7 +31,7 @@ export default function listJsunit() {
describe('listTest', function () {
beforeEach(async function{
beforeEach(async function(done){
let options = {
uri: 'pages/List',
}
......@@ -48,11 +48,12 @@ export default function listJsunit() {
console.error("push List page error " + JSON.stringify(result));
}
await sleep(2)
done()
});
afterEach(async function{
await sleep(3)
console.info("await 3s ");
await sleep(1)
console.info("List after each called");
});
/**
......
......@@ -31,7 +31,7 @@ export default function navigatorJsunit() {
describe('navigatorTest', function () {
beforeEach(async function{
beforeEach(async function(done){
let options = {
uri: 'pages/Navigator',
}
......@@ -48,11 +48,12 @@ export default function navigatorJsunit() {
console.error("push Navigator page error " + JSON.stringify(result));
}
await sleep(2)
done()
});
afterEach(async function{
await sleep(3)
console.info("await 3s ");
await sleep(1)
console.info("Navigator after each called");
});
/**
......
......@@ -31,7 +31,7 @@ export default function panelJsunit() {
describe('panelTest', function () {
beforeEach(async function{
beforeEach(async function(done){
let options = {
uri: 'pages/Panel',
}
......@@ -48,11 +48,12 @@ export default function panelJsunit() {
console.error("push Panel page error " + JSON.stringify(result));
}
await sleep(2)
done()
});
afterEach(async function{
await sleep(3)
console.info("await 3s ");
await sleep(1)
console.info("Panel after each called");
});
/**
* @tc.number SUB_ACE_BASIC_ETS_API_0440
......
......@@ -31,7 +31,7 @@ export default function propJsunit() {
describe('propTest', function () {
beforeEach(async function{
beforeEach(async function(done){
let options = {
uri: 'pages/Prop',
}
......@@ -48,11 +48,12 @@ export default function propJsunit() {
console.error("push Prop page error " + JSON.stringify(result));
}
await sleep(2)
done()
});
afterEach(async function{
await sleep(3)
console.info("await 3s ");
await sleep(1)
console.info("Prop after each called");
});
/**
......
......@@ -29,8 +29,7 @@ export default function rowJsunit() {
})
}
describe('rowTest', function () {
beforeEach(async function{
beforeEach(async function(done){
let options = {
uri: 'pages/Row',
}
......@@ -47,11 +46,12 @@ export default function rowJsunit() {
console.error("push Row page error " + JSON.stringify(result));
}
await sleep(2)
done()
});
afterEach(async function{
await sleep(3)
console.info("await 3s ");
await sleep(1)
console.info("Row after each called");
});
/**
......
......@@ -54,7 +54,7 @@ export default function swiperJsunit() {
describe('swiperTest', function () {
beforeEach(async function{
beforeEach(async function(done){
let options = {
uri: 'pages/Swiper',
}
......@@ -71,11 +71,12 @@ export default function swiperJsunit() {
console.error("push Swiper page error " + JSON.stringify(result));
}
await sleep(2)
done()
});
afterEach(async function{
await sleep(3)
console.info("await 3s ");
await sleep(1)
console.info("Swiper after each called");
});
/**
......
......@@ -31,7 +31,7 @@ export default function tabJsunit() {
describe('tabTest', function () {
beforeEach(async function{
beforeEach(async function(done){
let options = {
uri: 'pages/Tab',
}
......@@ -48,11 +48,12 @@ export default function tabJsunit() {
console.error("push Tab page error " + JSON.stringify(result));
}
await sleep(2)
done()
});
afterEach(async function{
await sleep(3)
console.info("await 3s ");
await sleep(1)
console.info("Tab after each called");
});
/**
......
......@@ -31,7 +31,7 @@ export default function textJsunit() {
describe('textTest', function () {
beforeEach(async function{
beforeEach(async function(done){
let options = {
uri: 'pages/Text',
}
......@@ -48,11 +48,12 @@ export default function textJsunit() {
console.error("push Text page error " + JSON.stringify(result));
}
await sleep(2)
done()
});
afterEach(async function{
await sleep(3)
console.info("await 3s ");
console.info("Text after each called")
await sleep(1)
});
/**
......
......@@ -30,7 +30,7 @@ export default function videoJsunit() {
}
describe('VideoAppInfoTest', function () {
beforeEach(async function{
beforeEach(async function(done){
let options = {
uri: 'pages/Video',
}
......@@ -47,11 +47,12 @@ export default function videoJsunit() {
console.error("push Video page error " + JSON.stringify(result));
}
await sleep(2)
done()
});
afterEach(async function{
await sleep(3)
console.info("await 3s ");
console.info("Video after each called");
await sleep(1)
});
/**
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册