提交 f403be11 编写于 作者: 杜庆泉's avatar 杜庆泉

Merge branch 'dev' of gitcode.net:dcloud/hello-uts into dev

......@@ -99,13 +99,13 @@ export function testJSON() : Result {
"id": "30"
}`;
let obj2 = JSON.parseObject<UserJSON>(json1);
expect(obj2!!.id).toEqual("30");
expect(obj2!.id).toEqual("30");
const json2 = `{
"id": "30"
}`;
let obj3 = JSON.parseObject<UserJSON>(json2);
expect(obj3!!.id).toEqual("30");
expect(obj3!.id).toEqual("30");
const json3 = `{
"name": "John"
}`;
......@@ -123,8 +123,8 @@ export function testJSON() : Result {
const json3 = `[{"name":"John","id":"30"},{"name":"jack","id":"21"}]`;
const array3 = JSON.parseArray(json3);
expect((array3![0] as UTSJSONObject)["name"]).toEqual("John");
const array3 = JSON.parseArray<UTSJSONObject>(json3);
// expect((array3![0])["name"]).toEqual("John");
})
test('stringify', () => {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册