diff --git a/uni_modules/uts-tests/utssdk/JSON.uts b/uni_modules/uts-tests/utssdk/JSON.uts index 511acf7069688b937f2d03ded36f792fadc6bef0..9781d4eb0a47b78864207661b25c54aa6d0284ab 100644 --- a/uni_modules/uts-tests/utssdk/JSON.uts +++ b/uni_modules/uts-tests/utssdk/JSON.uts @@ -85,13 +85,14 @@ export function testJSON() : Result { return describe("JSON", () => { test('custom-stringify', () => { - + // #ifdef APP-ANDROID expect(JSON.stringify(new A1())!.length).toEqual(28) expect(JSON.stringify(new A2())).toEqual("2") expect(JSON.stringify(new A3())).toEqual('"json"') expect(JSON.stringify(new A4())).toEqual('null') expect(JSON.stringify(new A5())!.length).toEqual(28) expect(JSON.stringify(new A6())!.length).toEqual(28) + // #endif })