diff --git a/uni_modules/uts-tests/utssdk/Date.uts b/uni_modules/uts-tests/utssdk/Date.uts index fd805481109b1d4cccacc48510eb1af459c4ef2e..aec8c7f0c4b09446a1c5de910539077ab81dcb1f 100644 --- a/uni_modules/uts-tests/utssdk/Date.uts +++ b/uni_modules/uts-tests/utssdk/Date.uts @@ -47,6 +47,7 @@ export function testDate() : Result { }) test('toXString', () => { + // #ifdef APP-ANDROID const event = new Date('1995-12-17T03:24:00'); // #ifndef APP-ANDROID expect(event.toString()).toEqual("Sun Dec 17 1995 03:24:00 GMT+0800"); @@ -64,7 +65,7 @@ export function testDate() : Result { expect(event2.toISOString()).toEqual("2014-01-09T14:00:00.000Z"); expect(event2.toJSON()).toEqual("Thu Jan 09 2014"); expect(event2.toDateString()).toEqual("22:00:00 GMT+0800"); - + // #endif })