提交 79118b70 编写于 作者: Q quanli 提交者: 权力
上级 4cd8ae1b
......@@ -413,12 +413,12 @@ describe('bluetoothBLETest1', function() {
characteristics:characteristics, includeServices:[]};
let ret = gattServer.addService(gattService);
console.info('[bluetooth_js] bluetooth addService null serviceUuid result : ' + ret);
expect(ret).assertTrue();
expect(ret).assertFalse();
await sleep(1000);
let ret1=gattServer.removeService('');
await sleep(1000);
console.info('[bluetooth_js]removeService ret:'+ret1);
expect(ret1).assertTrue();
expect(ret1).assertFalse();
done();
})
......@@ -451,12 +451,12 @@ describe('bluetoothBLETest1', function() {
characteristics:characteristics, includeServices:[]};
let ret = gattServer.addService(gattService);
console.info('[bluetooth_js] bluetooth addService invalid serviceUuid result : ' + ret);
expect(ret).assertTrue();
expect(ret).assertFalse();
await sleep(1000);
let ret1=gattServer.removeService('123@ad');
await sleep(1000);
console.info('[bluetooth_js]removeService ret:'+ret1);
expect(ret1).assertTrue();
expect(ret1).assertFalse();
done();
})
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册