@@ -37,24 +37,19 @@ describe("formatter test", () => {
37
37
expect ( formatter . timeFormat . name ) . toBe ( "timeFormat" ) ;
38
38
} ) ;
39
39
it ( "format time with param type string" , ( ) => {
40
- // toBe beijin timezone
41
- expect ( formatter . timeFormat . fn ( "2021-11-24 13:37:07" ) ) . toBe ( "2021-11-24 13:37:07" ) ;
40
+ expect ( formatter . timeFormat . fn ( "2021-11-24 05:37:07" ) ) . toBe ( "2021-11-24 05:37:07" ) ;
42
41
} ) ;
43
42
it ( "format time with invalid string param" , ( ) => {
44
- // toBe beijin timezone
45
43
expect ( formatter . timeFormat . fn ( "kodo-invalid" ) ) . toBe ( "" ) ;
46
44
} ) ;
47
45
it ( "format time with param type number" , ( ) => {
48
- // toBe beijin timezone
49
- expect ( formatter . timeFormat . fn ( dateToFormat . getTime ( ) ) ) . toBe ( "2021-11-24 13:37:07" ) ;
46
+ expect ( formatter . timeFormat . fn ( dateToFormat . getTime ( ) ) ) . toBe ( "2021-11-24 05:37:07" ) ;
50
47
} ) ;
51
48
it ( "format time with NaN param" , ( ) => {
52
- // toBe beijin timezone
53
49
expect ( formatter . timeFormat . fn ( NaN ) ) . toBe ( "" ) ;
54
50
} ) ;
55
51
it ( "format time with param type Date" , ( ) => {
56
- // toBe beijin timezone
57
- expect ( formatter . timeFormat . fn ( dateToFormat ) ) . toBe ( "2021-11-24 13:37:07" ) ;
52
+ expect ( formatter . timeFormat . fn ( dateToFormat ) ) . toBe ( "2021-11-24 05:37:07" ) ;
58
53
} ) ;
59
54
} ) ;
60
55
describe ( "elapse" , ( ) => {
0 commit comments