提交 912add22 编写于 作者: Y yaocui

remove case

Signed-off-by: Nyaocui <yaocui2@h-partners.com>
上级 91b41ce2
......@@ -1083,7 +1083,7 @@ export default function windowPromiseTest(context, windowStage, abilityStorage)
expect(!!ohosData).assertTrue();
let ohosDataError = await ohosWindow.create(context, windowId, 1).catch((err) => {
console.log(msgStr + 'ohosWindow.create 1 twice err: ' + JSON.stringify(err));
expect(err.code).assertEqual(1300001)
expect(err.code).assertEqual(1001)
done();
})
await ohosData.destroy();
......@@ -1660,43 +1660,5 @@ export default function windowPromiseTest(context, windowStage, abilityStorage)
console.error('Failed to hide the window with animation. Cause: ' + JSON.stringify(err));
})
})
/**
* @tc.number SUB_WINDOW_SETASPECTRATIO_JSAPI_002
* @tc.name Test setAspectRatioTest2
* @tc.desc Validate the scenario cancelled after setting the proportion of the content layout of the main window
*/
it('setAspectRatioTest2', 0, async function (done) {
let caseName = 'setAspectRatioTest2';
let msgStr = 'jsunittest ' + caseName + ' ';
console.log(msgStr + 'begin');
let mainWnd = null;
await windowStage.getMainWindow().then((data) => {
mainWnd = data;
expect(!!mainWnd).assertTrue();
console.info(msgStr + 'Succeeded in obtaining the main window. Data: ' + JSON.stringify(data));
}).catch((err) => {
console.error(msgStr + 'Failed to obtain the main window. Cause: ' + JSON.stringify(err));
});
try {
let ratio = 1.0;
await mainWnd.setAspectRatio(ratio).then(() => {
console.info(msgStr + 'Succeeded in setting aspect ratio of window.');
}).catch((err) => {
console.error(msgStr + 'Failed to set the aspect ratio of window. Cause:' + JSON.stringify(err));
});
} catch (exception) {
console.error(msgStr + 'Failed to set the aspect ratio of window. Cause: ' + JSON.stringify(exception));
}
try {
await mainWnd.resetAspectRatio().then(() => {
console.info(msgStr + 'Succeeded in resetting aspect ratio of window.');
}).catch((err) => {
console.error(msgStr + 'Failed to reset the aspect ratio of window. Cause:' + JSON.stringify(err));
});
} catch (exception) {
console.error(msgStr + 'Failed to reset the aspect ratio of window. Cause: ' + JSON.stringify(exception));
}
done();
})
})
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册