We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c2c60d commit da6da62Copy full SHA for da6da62
1 file changed
src/app/shared/date.util.spec.ts
@@ -22,7 +22,7 @@ describe('Date Utils', () => {
22
});
23
it('should convert NgbDateStruct to YYYY-MM-DDThh:mm:ssZ string', () => {
24
// NOTE: month is zero indexed which is why it increases by one
25
- const date = new Date(Date.UTC(2022, 5, 3))
+ const date = new Date(Date.UTC(2022, 5, 3));
26
expect(dateToISOFormat(dateToNgbDateStruct(date))).toEqual('2022-06-03T00:00:00Z');
27
28
0 commit comments