@loadsmart/loadsmart-ui 7.2.0 → 7.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -114,6 +114,12 @@ describe('DateFormatHelper', () => {
|
|
|
114
114
|
DateFormatHelper('MM/DD/YYYY HH:mm:ss').format(DateHelper('2022-02-01T12:00:00.000Z'))
|
|
115
115
|
).toBe('02/01/2022 12:00:00')
|
|
116
116
|
|
|
117
|
+
expect(
|
|
118
|
+
DateFormatHelper('MM/DD/YYYY HH:mm:ss').format(
|
|
119
|
+
DateHelper('2022-02-01T00:00:00.000Z', { normalize: false })
|
|
120
|
+
)
|
|
121
|
+
).toBe('02/01/2022 00:00:00')
|
|
122
|
+
|
|
117
123
|
expect(
|
|
118
124
|
DateFormatHelper('MM/DD/YYYY, hh:mm A').format(
|
|
119
125
|
DateHelper('2022-02-01T10:30:00.000Z', { normalize: false })
|