提交 a4f92cb9 编写于 作者: M mayunteng_1

用例需改

Signed-off-by: Nmayunteng_1 <mayunteng@huawei.com>
Change-Id: I1125d45767b2eac4959012ac04c89a59a050895f
上级 cdac67bb
......@@ -272,13 +272,12 @@ describe('MultimodalInput_Device_test', function () {
* @tc.name MultimodalInputDevice_getDeviceIds_Promise_test
* @tc.desc inputdevice interface getDeviceIds & supportKeys test
*/
it("MultimodalInputDevice_getDeviceIds_Promise_test", 0, async function (done) {
it("MultimodalInputDevice_getDeviceIds_Promise_test", 0, function () {
console.info(`MultimodalInputDevice_getDeviceIds_Promise_test enter`);
inputDevice.getDeviceIds().then((data, err) => {
if (err) {
console.info(`MultimodalInputDevice_getDeviceIds_Promise_test err`);
expect(false).assertTrue();
done();
} else {
console.info(`MultimodalInputDevice_getDeviceIds_Promise_test data`);
for (let i = 0; i < data.length; ++i) {
......@@ -286,7 +285,6 @@ describe('MultimodalInput_Device_test', function () {
expect(res).assertInstanceOf('Array');
});
}
done();
}
console.info(`MultimodalInputDevice_getDeviceIds_Promise_test exit`);
});
......@@ -297,18 +295,16 @@ describe('MultimodalInput_Device_test', function () {
* @tc.name MultimodalInputDevice_getDevice_Promise_test
* @tc.desc inputdevice interface getDevice test
*/
it("MultimodalInputDevice_getDevice_Promise_test", 0, async function (done) {
it("MultimodalInputDevice_getDevice_Promise_test", 0, function () {
console.info(`MultimodalInputDevice_getDevice_Promise_test enter`);
inputDevice.getDevice(-1).then((data, err) => {
if (err) {
console.info(`MultimodalInputDevice_getDevice_Promise_test err`);
expect(false).assertTrue();
console.info(`MultimodalInputDevice_getDevice_Promise_test ${JSON.stringify(err)}`);
done();
} else {
console.info(`MultimodalInputDevice_getDevice_Promise_test data`);
expect(JSON.stringify(data) !== "{}").assertTrue();
done();
}
console.info(`MultimodalInputDevice_getDevice_Promise_test exit`);
});
......@@ -356,4 +352,4 @@ describe('MultimodalInput_Device_test', function () {
})
})
}
\ No newline at end of file
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册