提交 b7a1544c 编写于 作者: 1 15829070344 提交者: 何海涛

fixed cd6f0b34 from https://gitee.com/murphy1984/acts/pulls/6389

【时间时区】XTS偶发失败优化
Signed-off-by: N15829070344 <hehaitao5@huawei.com>
Change-Id: Ia8d12ce7387262b09cae972d7c492180ede9a050
上级 e82f126b
...@@ -29,224 +29,225 @@ export default function systemTimeJsunit() { ...@@ -29,224 +29,225 @@ export default function systemTimeJsunit() {
* @tc.level : Level 1 * @tc.level : Level 1
*/ */
it("SUB_systemTime_getCurrentTime_JS_API_0001", 0, async function (done) { it("SUB_systemTime_getCurrentTime_JS_API_0001", 0, async function (done) {
console.info("====>----------UB_systemTime_getCurrentTime_JS_API_0001 start----------------"); console.info("====>----------UB_systemTime_getCurrentTime_JS_API_0001 start----------------");
systemTime.getCurrentTime(true, (error, data) => { systemTime.getCurrentTime(true, (error, data) => {
if (error) { if (error) {
console.error(`failed to systemTime.getCurrentTime because ` + JSON.stringify(error)); console.error('failed to systemTime.getCurrentTime because ' + JSON.stringify(error));
expect().assertFail(); expect().assertFail();
}; };
console.info(`systemTime.getCurrentTime success data : ` + JSON.stringify(data)); console.info('====>SystemTime.getCurrentTime success data : ' + JSON.stringify(data));
expect(data != null).assertEqual(true); expect(data != null).assertEqual(true);
}); console.info("====>----------SUB_systemTime_getRealActiveTime_JS_API_0100 end-----------------");
done();
console.info("====>----------SUB_systemTime_getRealActiveTime_JS_API_0100 end-----------------"); });
done();
}); });
/** /**
* @tc.number SUB_systemTime_getCurrentTime_JS_API_0002 * @tc.number SUB_systemTime_getCurrentTime_JS_API_0002
* @tc.name Test systemTime.getCurrentTime * @tc.name Test systemTime.getCurrentTime
* @tc.desc Obtains the number of milliseconds that have elapsed since the Unix epoch. * @tc.desc Obtains the number of milliseconds that have elapsed since the Unix epoch.
* @tc.size : MEDIUM * @tc.size : MEDIUM
* @tc.type : Function * @tc.type : Function
* @tc.level : Level 1 * @tc.level : Level 1
*/ */
it("SUB_systemTime_getCurrentTime_JS_API_0002", 0, async function (done) { it("SUB_systemTime_getCurrentTime_JS_API_0002", 0, async function (done) {
console.info("====>-----SUB_systemTime_getCurrentTime_JS_API_0002 start----------------"); console.info("====>-----SUB_systemTime_getCurrentTime_JS_API_0002 start----------------");
systemTime.getCurrentTime(true).then((data) => { systemTime.getCurrentTime(true).then((data) => {
console.info(`SUB_systemTime_getCurrentTime_JS_API_0002 data : ` + JSON.stringify(data)); console.info('====>SUB_systemTime_getCurrentTime_JS_API_0002 data : ' + JSON.stringify(data));
expect(data != null).assertEqual(true); expect(data != null).assertEqual(true);
}).catch(err => { console.info("====>-----SUB_systemTime_getCurrentTime_JS_API_0002 end------------");
console.error(`SUB_systemTime_getCurrentTime_JS_API_0002 err: ` + JSON.stringify(error)); done();
expect().assertFail() }).catch(err => {
}); console.error('SUB_systemTime_getCurrentTime_JS_API_0002 err: ' + JSON.stringify(error));
console.info("====>-----SUB_systemTime_getCurrentTime_JS_API_0002 end------------"); expect().assertFail()
done(); done();
});
}); });
/** /**
* @tc.number SUB_systemTime_getRealActiveTime_JS_API_0001 * @tc.number SUB_systemTime_getRealActiveTime_JS_API_0001
* @tc.name Test systemTime.getCurrentTime * @tc.name Test systemTime.getCurrentTime
* @tc.desc Obtains the number of milliseconds elapsed since the system was booted, not including deep sleep time. * @tc.desc Obtains the number of milliseconds elapsed since the system was booted, not including deep sleep time.
* @tc.size : MEDIUM * @tc.size : MEDIUM
* @tc.type : Function * @tc.type : Function
* @tc.level : Level 1 * @tc.level : Level 1
*/ */
it("SUB_systemTime_getRealActiveTime_JS_API_0001", 0, async function (done) { it("SUB_systemTime_getRealActiveTime_JS_API_0001", 0, async function (done) {
console.info("====>----------SUB_systemTime_getRealActiveTime_JS_API_0001 start----------------"); console.info("====>----------SUB_systemTime_getRealActiveTime_JS_API_0001 start----------------");
systemTime.getRealActiveTime(true, (error, data) => { systemTime.getRealActiveTime(true, (error, data) => {
if (error) { if (error) {
console.error(`SUB_systemTime_getRealActiveTime_JS_API_0001 err: ` + JSON.stringify(error)); console.error('SUB_systemTime_getRealActiveTime_JS_API_0001 err: ' + JSON.stringify(error));
expect().assertFail() expect().assertFail()
}; };
console.info(`SUB_systemTime_getRealActiveTime_JS_API_0001 data : ` + JSON.stringify(data)); console.info('====>SUB_systemTime_getRealActiveTime_JS_API_0001 data : ' + JSON.stringify(data));
expect(data != null).assertEqual(true); expect(data != null).assertEqual(true);
}); console.info("====>----------SUB_systemTime_getRealActiveTime_JS_API_0001 end-----------------");
done();
console.info("====>----------SUB_systemTime_getRealActiveTime_JS_API_0001 end-----------------"); });
done();
}); });
/** /**
* @tc.number SUB_systemTime_getRealActiveTime_JS_API_0002 * @tc.number SUB_systemTime_getRealActiveTime_JS_API_0002
* @tc.name Test systemTime.getCurrentTime * @tc.name Test systemTime.getCurrentTime
* @tc.desc Obtains the number of milliseconds elapsed since the system was booted, not including deep sleep time. * @tc.desc Obtains the number of milliseconds elapsed since the system was booted, not including deep sleep time.
* @tc.size : MEDIUM * @tc.size : MEDIUM
* @tc.type : Function * @tc.type : Function
* @tc.level : Level 1 * @tc.level : Level 1
*/ */
it("SUB_systemTime_getRealActiveTime_JS_API_0002", 0, async function (done) { it("SUB_systemTime_getRealActiveTime_JS_API_0002", 0, async function (done) {
console.info("====>-----SUB_systemTime_getRealActiveTime_JS_API_0002 start----------------"); console.info("====>-----SUB_systemTime_getRealActiveTime_JS_API_0002 start----------------");
systemTime.getRealActiveTime(true).then((data) => { systemTime.getRealActiveTime(true).then((data) => {
onsole.log(`SUB_systemTime_getRealActiveTime_JS_API_0002 data : ` + JSON.stringify(data)); console.log('SUB_systemTime_getRealActiveTime_JS_API_0002 data : ' + JSON.stringify(data));
expect(data != null).assertEqual(true); expect(data != null).assertEqual(true);
}).catch(err => { console.info("====>-----SUB_systemTime_getRealActiveTime_JS_API_0002 end------------");
console.error(`SUB_systemTime_getRealActiveTime_JS_API_0002 err: ` + JSON.stringify(error)); done();
expect().assertFail() }).catch(err => {
}); console.error('SUB_systemTime_getRealActiveTime_JS_API_0002 err: ' + JSON.stringify(error));
console.info("====>-----SUB_systemTime_getRealActiveTime_JS_API_0002 end------------"); expect().assertFail()
done(); done();
});
}); });
/** /**
* @tc.number SUB_systemTime_getRealTime_JS_API_0001 * @tc.number SUB_systemTime_getRealTime_JS_API_0001
* @tc.name Test systemTime.getCurrentTime * @tc.name Test systemTime.getCurrentTime
* @tc.desc Obtains the number of milliseconds elapsed since the system was booted, including deep sleep time. * @tc.desc Obtains the number of milliseconds elapsed since the system was booted, including deep sleep time.
* @tc.size : MEDIUM * @tc.size : MEDIUM
* @tc.type : Function * @tc.type : Function
* @tc.level : Level 1 * @tc.level : Level 1
*/ */
it("SUB_systemTime_getRealTime_JS_API_0001", 0, async function (done) { it("SUB_systemTime_getRealTime_JS_API_0001", 0, async function (done) {
console.info("====>----------SUB_systemTime_getRealTime_JS_API_0001 start----------------"); console.info("====>----------SUB_systemTime_getRealTime_JS_API_0001 start----------------");
systemTime.getRealTime(true, (error, data) => { systemTime.getRealTime(true, (error, data) => {
if (error) { if (error) {
console.error(`SUB_systemTime_getRealTime_JS_API_0001 err: ` + JSON.stringify(error)); console.error('SUB_systemTime_getRealTime_JS_API_0001 err: ' + JSON.stringify(error));
expect().assertFail() expect().assertFail()
}; };
console.info(`SUB_systemTime_getRealTime_JS_API_0001 data : ` + JSON.stringify(data)); console.info('====>SUB_systemTime_getRealTime_JS_API_0001 data : ' + JSON.stringify(data));
expect(data != null).assertEqual(true); expect(data != null).assertEqual(true);
}); console.info("====>----------SUB_systemTime_getRealTime_JS_API_0001 end-----------------");
done();
});
console.info("====>----------SUB_systemTime_getRealTime_JS_API_0001 end-----------------");
done();
}); });
/** /**
* @tc.number SUB_systemTime_getRealTime_JS_API_0002 * @tc.number SUB_systemTime_getRealTime_JS_API_0002
* @tc.name Test systemTime.getCurrentTime * @tc.name Test systemTime.getCurrentTime
* @tc.desc Obtains the number of milliseconds elapsed since the system was booted, not including deep sleep time. * @tc.desc Obtains the number of milliseconds elapsed since the system was booted, not including deep sleep time.
* @tc.size : MEDIUM * @tc.size : MEDIUM
* @tc.type : Function * @tc.type : Function
* @tc.level : Level 1 * @tc.level : Level 1
*/ */
it("SUB_systemTime_getRealTime_JS_API_0002", 0, async function (done) { it("SUB_systemTime_getRealTime_JS_API_0002", 0, async function (done) {
console.info("====>-----SUB_systemTime_getRealTime_JS_API_0002 start----------------"); console.info("====>-----SUB_systemTime_getRealTime_JS_API_0002 start----------------");
systemTime.getRealTime(true).then((data) => { systemTime.getRealTime(true).then((data) => {
console.info(`SUB_systemTime_getRealTime_JS_API_0002 data : ` + JSON.stringify(data)); console.info('====>SUB_systemTime_getRealTime_JS_API_0002 data : ' + JSON.stringify(data));
expect(data != null).assertEqual(true); expect(data != null).assertEqual(true);
}).catch(err => { }).catch(err => {
console.error(`SUB_systemTime_getRealTime_JS_API_0002 err: ` + JSON.stringify(error)); console.error('SUB_systemTime_getRealTime_JS_API_0002 err: ' + JSON.stringify(error));
expect().assertFail(); expect().assertFail();
}); });
console.info("====>-----SUB_systemTime_getRealTime_JS_API_0002 end------------"); console.info("====>-----SUB_systemTime_getRealTime_JS_API_0002 end------------");
done(); done();
}); });
/** /**
* @tc.number SUB_systemTime_setTime_JS_API_0100 * @tc.number SUB_systemTime_setTime_JS_API_0100
* @tc.name Test systemTime.setTime * @tc.name Test systemTime.setTime
* @tc.desc Test systemTime_setTime API functionality. * @tc.desc Test systemTime_setTime API functionality.
* @tc.size : MEDIUM * @tc.size : MEDIUM
* @tc.type : Function * @tc.type : Function
* @tc.level : Level 0 * @tc.level : Level 0
*/ */
it('SUB_systemTime_setTime_JS_API_0100', 0, async function (done) { it('SUB_systemTime_setTime_JS_API_0100', 0, async function (done) {
console.info("====>SUB_systemTime_setTime_JS_API_0100 start"); console.info("====>SUB_systemTime_setTime_JS_API_0100 start");
let currentTime = new Date().getTime() + 2000 let currentTime = new Date().getTime() + 2000
try{ try{
await systemTime.setTime(currentTime) await systemTime.setTime(currentTime)
expect(true).assertTrue(); expect(true).assertTrue();
done(); done();
}catch(err){ }catch(err){
console.info("====>SUB_systemTime_setTime_JS_API_0100 error " + err); console.info("====>SUB_systemTime_setTime_JS_API_0100 error " + err);
expect().assertFail(); expect().assertFail();
done(); done();
} }
}); });
/** /**
* @tc.number SUB_systemTime_setTime_JS_API_0200 * @tc.number SUB_systemTime_setTime_JS_API_0200
* @tc.name Test systemTime.setTime Invalid value * @tc.name Test systemTime.setTime Invalid value
* @tc.desc Test systemTime_setTime API functionality. * @tc.desc Test systemTime_setTime API functionality.
* @tc.size : MEDIUM * @tc.size : MEDIUM
* @tc.type : Function * @tc.type : Function
* @tc.level : Level 0 * @tc.level : Level 0
*/ */
it('SUB_systemTime_setTime_JS_API_0200', 0, async function (done) { it('SUB_systemTime_setTime_JS_API_0200', 0, async function (done) {
console.info("====>SUB_systemTime_setTime_JS_API_0200 start"); console.info("====>SUB_systemTime_setTime_JS_API_0200 start");
try{ try{
systemTime.setTime(15222).then(() => { systemTime.setTime(15222).then(() => {
console.debug('SUB_systemTime_setTime_JS_API_0200 setTime fail') console.debug('====>SUB_systemTime_setTime_JS_API_0200 setTime fail')
expect().assertFail(); expect().assertFail();
done(); done();
}).catch((err)=>{ }).catch((err)=>{
console.debug('SUB_systemTime_setTime_JS_API_0200 setTime err:' + JSON.stringify(err)) console.debug('====>SUB_systemTime_setTime_JS_API_0200 setTime err:' + JSON.stringify(err))
expect(true).assertTrue(); expect(true).assertTrue();
console.debug('SUB_systemTime_setTime_JS_API_0200 end'); console.debug('====>SUB_systemTime_setTime_JS_API_0200 end');
done(); done();
}) })
}catch(err){ }catch(err){
console.debug('SUB_systemTime_setTime_JS_API_0200 setTime throw_err' + JSON.stringify(err)) console.debug('====>SUB_systemTime_setTime_JS_API_0200 setTime throw_err' + JSON.stringify(err))
expect(err.code).assertEqual('401'); expect(err.code).assertEqual('401');
done(); done();
} }
}); });
/** /**
* @tc.number SUB_systemTime_setTime_JS_API_0300 * @tc.number SUB_systemTime_setTime_JS_API_0300
* @tc.name Test systemTime.setTime3 * @tc.name Test systemTime.setTime3
* @tc.desc Test systemTime_setTime API functionality. * @tc.desc Test systemTime_setTime API functionality.
* @tc.size : MEDIUM * @tc.size : MEDIUM
* @tc.type : Function * @tc.type : Function
* @tc.level : Level 0 * @tc.level : Level 0
*/ */
it('SUB_systemTime_setTime_JS_API_0300', 0, async function (done) { it('SUB_systemTime_setTime_JS_API_0300', 0, async function (done) {
console.info("====>SUB_systemTime_setTime_JS_API_0300 start"); console.info("====>SUB_systemTime_setTime_JS_API_0300 start");
let currentTime = new Date().getTime() + 2000 let currentTime = new Date().getTime() + 2000
systemTime.setTime(currentTime, (err) => { systemTime.setTime(currentTime, (err) => {
try{ try{
expect(true).assertTrue(); expect(true).assertTrue();
console.info('SUB_systemTime_setTime_JS_API_0300 end'); console.info('====>SUB_systemTime_setTime_JS_API_0300 end');
done(); done();
}catch(err){ }catch(err){
console.info("====>SUB_systemTime_setTime_JS_API_0300 error: " + err); console.info("====>SUB_systemTime_setTime_JS_API_0300 error: " + err);
expect().assertFail(); expect().assertFail();
done(); done();
} }
}); });
}); });
/** /**
* @tc.number SUB_systemTime_setTime_JS_API_0400 * @tc.number SUB_systemTime_setTime_JS_API_0400
* @tc.name Test systemTime.setTime4 Invalid value * @tc.name Test systemTime.setTime4 Invalid value
* @tc.desc Test systemTime_setTime API functionality. * @tc.desc Test systemTime_setTime API functionality.
* @tc.size : MEDIUM * @tc.size : MEDIUM
* @tc.type : Function * @tc.type : Function
* @tc.level : Level 0 * @tc.level : Level 0
*/ */
it('SUB_systemTime_setTime_JS_API_0400', 0, async function (done) { it('SUB_systemTime_setTime_JS_API_0400', 0, async function (done) {
console.info("====>SUB_systemTime_setTime_JS_API_0400 start"); console.info("====>SUB_systemTime_setTime_JS_API_0400 start");
try{ try{
systemTime.setTime(18, (err, data) => { systemTime.setTime(18, (err, data) => {
console.info("====>SUB_systemTime_setTime_JS_API_0400 data: " + data); console.info("====>SUB_systemTime_setTime_JS_API_0400 data: " + data);
console.info("====>SUB_systemTime_setTime_JS_API_0400 error: " + err); console.info("====>SUB_systemTime_setTime_JS_API_0400 error: " + err);
expect(true).assertTrue(); expect(true).assertTrue();
})}catch(error) {error => { console.info('====>SUB_systemTime_setTime_JS_API_0400 end');
expect(1).assertLarger(0); done();
}; })
}; }catch(err) {
console.info('SUB_systemTime_setTime_JS_API_0400 end'); expect().assertFail();
done(); done();
};
}); });
/** /**
...@@ -258,16 +259,17 @@ export default function systemTimeJsunit() { ...@@ -258,16 +259,17 @@ export default function systemTimeJsunit() {
* @tc.level : Level 0 * @tc.level : Level 0
*/ */
it('SUB_systemTime_setDate_JS_API_0100', 0, async function (done) { it('SUB_systemTime_setDate_JS_API_0100', 0, async function (done) {
console.info("====>SUB_systemTime_setDate_JS_API_0100 start"); console.info("====>SUB_systemTime_setDate_JS_API_0100 start");
var data = new Date("October 13, 2020 11:13:00"); var data = new Date("October 13, 2020 11:13:00");
systemTime.setDate(1).then(data => { systemTime.setDate(1).then(data => {
console.info("====>SUB_systemTime_setDate_JS_API_0100 data " + data); console.info("====>SUB_systemTime_setDate_JS_API_0100 data " + data);
expect(true).assertTrue(); expect().assertFail();
}).catch(error => { done();
console.info("====>SUB_systemTime_setDate_JS_API_0100 error " + error); }).catch(error => {
expect().assertFail(); console.info("====>SUB_systemTime_setDate_JS_API_0100 error " + error);
}); expect(true).assertTrue();
done(); done();
});
}); });
/** /**
...@@ -279,15 +281,16 @@ export default function systemTimeJsunit() { ...@@ -279,15 +281,16 @@ export default function systemTimeJsunit() {
* @tc.level : Level 0 * @tc.level : Level 0
*/ */
it('SUB_systemTime_setDate_JS_API_0200', 0, async function (done) { it('SUB_systemTime_setDate_JS_API_0200', 0, async function (done) {
console.info("====>SUB_systemTime_setDate_JS_API_0200 start"); console.info("====>SUB_systemTime_setDate_JS_API_0200 start");
systemTime.setDate(0).then(data => { systemTime.setDate(0).then(data => {
console.info("====>SUB_systemTime_setDate_JS_API_0200 data " + data); console.info("====>SUB_systemTime_setDate_JS_API_0200 data " + data);
expect(true).assertTrue(); expect().assertFail();
}).catch(error => { done();
console.info("====>SUB_systemTime_setDate_JS_API_0200 error " + error); }).catch(error => {
expect().assertFail(); console.info("====>SUB_systemTime_setDate_JS_API_0200 error " + error);
}); expect(true).assertTrue();
done(); done();
});
}); });
/** /**
...@@ -299,18 +302,19 @@ export default function systemTimeJsunit() { ...@@ -299,18 +302,19 @@ export default function systemTimeJsunit() {
* @tc.level : Level 0 * @tc.level : Level 0
*/ */
it('SUB_systemTime_setDate_JS_API_0300', 0, async function (done) { it('SUB_systemTime_setDate_JS_API_0300', 0, async function (done) {
console.info("====>SUB_systemTime_setDate_JS_API_0300 start"); console.info("====>SUB_systemTime_setDate_JS_API_0300 start");
var data = new Date("October 13, 2020 11:13:00"); var data = new Date("October 13, 2020 11:13:00");
systemTime.setDate(data, (error, data) => { systemTime.setDate(data, (error, data) => {
if(error){ if(error){
console.info("====>SUB_systemTime_setDate_JS_API_0300 error " + error); console.info("====>SUB_systemTime_setDate_JS_API_0300 error " + error);
expect().assertFail(); expect(true).assertTrue();
}else{ done();
console.info("====>SUB_systemTime_setDate_JS_API_0300 data " + data); }else{
expect(true).assertTrue(); console.info("====>SUB_systemTime_setDate_JS_API_0300 data " + data);
}; expect().assertFail();
}); done();
done(); };
});
}); });
/** /**
...@@ -322,15 +326,15 @@ export default function systemTimeJsunit() { ...@@ -322,15 +326,15 @@ export default function systemTimeJsunit() {
* @tc.level : Level 0 * @tc.level : Level 0
*/ */
it('SUB_systemTime_setTimezone_JS_API_0100', 0, async function (done) { it('SUB_systemTime_setTimezone_JS_API_0100', 0, async function (done) {
console.info("====>SUB_systemTime_setTimezone_JS_API_0100 start"); console.info("====>SUB_systemTime_setTimezone_JS_API_0100 start");
systemTime.setTimezone('Asia, Shanghai').then(data => { systemTime.setTimezone('Asia, Shanghai').then(data => {
console.info("====>SUB_systemTime_setTimezone_JS_API_0100 data " + data); console.info("====>SUB_systemTime_setTimezone_JS_API_0100 data " + data);
expect().assertFail(); expect().assertFail();
}).catch(error => { }).catch(error => {
console.info("====>SUB_systemTime_setTimezone_JS_API_0100 error " + error); console.info("====>SUB_systemTime_setTimezone_JS_API_0100 error " + error);
expect(true).assertTrue(); expect(true).assertTrue();
}); done();
done(); });
}); });
/** /**
...@@ -342,15 +346,15 @@ export default function systemTimeJsunit() { ...@@ -342,15 +346,15 @@ export default function systemTimeJsunit() {
* @tc.level : Level 0 * @tc.level : Level 0
*/ */
it('SUB_systemTime_setTimezone_JS_API_0200', 0, async function (done) { it('SUB_systemTime_setTimezone_JS_API_0200', 0, async function (done) {
console.info("====>SUB_systemTime_setTimezone_JS_API_0200 start"); console.info("====>SUB_systemTime_setTimezone_JS_API_0200 start");
systemTime.setTimezone('Beijing,China').then(data => { systemTime.setTimezone('Beijing,China').then(data => {
console.info("====>SUB_systemTime_setTimezone_JS_API_0200 data " + data); console.info("====>SUB_systemTime_setTimezone_JS_API_0200 data " + data);
expect().assertFail(); expect().assertFail();
}).catch(error => { }).catch(error => {
console.info("====>SUB_systemTime_setTimezone_JS_API_0200 error " + error); console.info("====>SUB_systemTime_setTimezone_JS_API_0200 error " + error);
expect(true).assertTrue(); expect(true).assertTrue();
}); done();
done(); });
}); });
/** /**
...@@ -362,15 +366,15 @@ export default function systemTimeJsunit() { ...@@ -362,15 +366,15 @@ export default function systemTimeJsunit() {
* @tc.level : Level 0 * @tc.level : Level 0
*/ */
it('SUB_systemTime_setTimezone_JS_API_0300', 0, async function (done) { it('SUB_systemTime_setTimezone_JS_API_0300', 0, async function (done) {
console.info("====>SUB_systemTime_setTimezone_JS_API_0300 start"); console.info("====>SUB_systemTime_setTimezone_JS_API_0300 start");
systemTime.setTimezone('Baker Island, U.S.A.').then(data => { systemTime.setTimezone('Baker Island, U.S.A.').then(data => {
console.info("====>SUB_systemTime_setTimezone_JS_API_0300 data " + data); console.info("====>SUB_systemTime_setTimezone_JS_API_0300 data " + data);
expect().assertFail(); expect().assertFail();
}).catch(error => { }).catch(error => {
console.info("====>SUB_systemTime_setTimezone_JS_API_0300 error " + error); console.info("====>SUB_systemTime_setTimezone_JS_API_0300 error " + error);
expect(true).assertTrue(); expect(true).assertTrue();
}); done();
done(); });
}); });
}) })
} }
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册