Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
Hello UTS
比较版本
2085c418a85fad7c086ad9885977a8b9a1a731d7...b5165042d5cdeec35a3b100a4c49b5139a571297
H
Hello UTS
项目概览
DCloud
/
Hello UTS
通知
1566
Star
25
Fork
8
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
2
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
H
Hello UTS
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
2
Issue
2
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
源分支
b5165042d5cdeec35a3b100a4c49b5139a571297
选择Git版本
...
目标分支
2085c418a85fad7c086ad9885977a8b9a1a731d7
选择Git版本
比较
Commits (5)
https://gitcode.net/dcloud/hello-uts/-/commit/2d25f4c9909e9ea5c27c9b0678602e768ff82261
Date.toXString 示例完善
2024-04-18T12:55:00+08:00
duqingquan
duqingquan@dcloud.io
https://gitcode.net/dcloud/hello-uts/-/commit/6f2df66d4a0ec3119a60bd3d3208f25f70515453
调整date测试例
2024-04-19T17:09:25+08:00
m0_75226990
lizhongyi@dcloud.io
https://gitcode.net/dcloud/hello-uts/-/commit/2893e5719f420078ebd8e0ac31c72e0c69306de9
调整 date.toXString 测试示例
2024-04-19T20:02:39+08:00
duqingquan
duqingquan@dcloud.io
https://gitcode.net/dcloud/hello-uts/-/commit/caefc89249a128acce54f001d4776d26b607e6bc
Date.toXString 示例调整
2024-04-19T20:13:56+08:00
duqingquan
duqingquan@dcloud.io
https://gitcode.net/dcloud/hello-uts/-/commit/b5165042d5cdeec35a3b100a4c49b5139a571297
解决Date 示例冲突
2024-04-19T20:15:48+08:00
duqingquan
duqingquan@dcloud.io
隐藏空白更改
内联
并排
Showing
1 changed file
with
3 addition
and
7 deletion
+3
-7
uni_modules/uts-tests/utssdk/Date.uts
uni_modules/uts-tests/utssdk/Date.uts
+3
-7
未找到文件。
uni_modules/uts-tests/utssdk/Date.uts
浏览文件 @
b5165042
...
...
@@ -49,22 +49,18 @@ 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");
expect(event.toTimeString()).toEqual("03:24:00 GMT+0800");
// #endif
expect(event.toISOString()).toEqual("1995-12-16T19:24:00.000Z");
expect(event.toJSON()).toEqual("1995-12-16T19:24:00.000Z");
expect(event.toDateString()).toEqual("Sun Dec 17 1995");
const event2 = new Date('2014-01-09 22:00:00');
// #ifndef APP-ANDROID
expect(event2.toString()).toEqual("Thu Jan 09 2014 22:00:00 GMT+0800");
expect(event2.toTimeString()).toEqual("2014-01-09T14:00:00.000Z");
// #endif
expect(event2.toTimeString()).toEqual("22:00:00 GMT+0800");
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
");
expect(event2.toJSON()).toEqual("
2014-01-09T14:00:00.000Z
");
expect(event2.toDateString()).toEqual("
Thu Jan 09 2014
");
// #endif
})
...
...