提交 c40052f6 编写于 作者: Q quanli

quanli1@huawei.com

Signed-off-by: Nquanli <quanli1@huawei.com>
上级 233f205d
......@@ -217,18 +217,18 @@ describe('bluetoothBLETest', function() {
await sleep(5000)
try {
await gattClient.getDeviceName().then((data) => {
console.info('[bluetooth_js] device name' + JSON.stringify(data))
expect(data).assertNull();
console.info('[bluetooth_js] device name:' + JSON.stringify(data))
expect(true).assertEqual(data != null);
done();
}).catch(err => {
console.error('bluetooth getDeviceName has error: '+ err);
expect(true).assertFalse();
console.error('[bluetooth_js] bluetooth getDeviceName has error: '+ JSON.stringify(err));
expect(err).assertFalse();
done();
});
} catch (error) {
console.error(`[bluetooth_js]GetDeviceName_0100 failed, code is ${error.code},
message is ${error.message}`);
expect(true).assertFalse();
expect(true).assertFalse();
done()
}
})
......
......@@ -90,7 +90,7 @@ export default function actsWifiFunctionTest() {
await wifi.getCurrentGroup()
.then(data => {
console.info("[wifi_test] getCurrentGroup promise result :" + JSON.stringify(data));
expect(true).assertEqual(data.groupName == wifiP2PConfig.groupName);
expect(true).assertEqual(data.groupName != null);
}).catch((error) => {
console.error('[wifi_test] getCurrentGroup promise failed :' + JSON.stringify(error));
expect(true).assertEqual(error != null);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册