未验证 提交 48c7ee0f 编写于 作者: O openharmony_ci 提交者: Gitee

!6129 ActsGetWantAllTest 针对Napi CareteJsWant增加测试用例

Merge pull request !6129 from xinking129/master
...@@ -44,6 +44,7 @@ describe('ActsGetWantTest', function () { ...@@ -44,6 +44,7 @@ describe('ActsGetWantTest', function () {
mykey3: "str", mykey3: "str",
mykey4: [false, true, false], mykey4: [false, true, false],
mykey5: ["str", "STR", "helloopenharmony"], mykey5: ["str", "STR", "helloopenharmony"],
mykey6: {"subKey1":"STRING", "subKey2":10, "subKey3":true},
}, },
} }
}).then((data) => { }).then((data) => {
...@@ -64,6 +65,9 @@ describe('ActsGetWantTest', function () { ...@@ -64,6 +65,9 @@ describe('ActsGetWantTest', function () {
expect(data.want.parameters.mykey5[0]).assertEqual("str"); expect(data.want.parameters.mykey5[0]).assertEqual("str");
expect(data.want.parameters.mykey5[1]).assertEqual("STR"); expect(data.want.parameters.mykey5[1]).assertEqual("STR");
expect(data.want.parameters.mykey5[2]).assertEqual("helloopenharmony"); expect(data.want.parameters.mykey5[2]).assertEqual("helloopenharmony");
expect(data.want.parameters.mykey6["subKey1"]).assertEqual("STRING");
expect(data.want.parameters.mykey6["subKey2"]).assertEqual(10);
expect(data.want.parameters.mykey6["subKey3"]).assertEqual(true);
setTimeout(()=>{ setTimeout(()=>{
done(); done();
}, TIMEOUT_NUMBER); }, TIMEOUT_NUMBER);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册