From c7ba253e7cc640daee2be0b49b91bed45e76b005 Mon Sep 17 00:00:00 2001 From: Sidharth Vinod Date: Wed, 7 Sep 2022 13:34:56 +0530 Subject: [PATCH] Cleanup --- src/diagrams/gantt/ganttDb.spec.ts | 36 ------------------------------ 1 file changed, 36 deletions(-) diff --git a/src/diagrams/gantt/ganttDb.spec.ts b/src/diagrams/gantt/ganttDb.spec.ts index 0588df3ae..799a4a54e 100644 --- a/src/diagrams/gantt/ganttDb.spec.ts +++ b/src/diagrams/gantt/ganttDb.spec.ts @@ -17,42 +17,6 @@ describe('when using the ganttDb', function () { } ); - // it.only('should parse', () => { - // expect( - // convert(` - // str | expected - // ${'1d'} | ${moment.duration(1, 'd')} - // ${'2w'} | ${moment.duration(2, 'w')} - // ${'1ms'} | ${moment.duration(1, 'ms')} - // ${'0.1s'} | ${moment.duration(100, 'ms')} - // ${'1f'} | ${moment.duration.invalid()} - // `) - // ).toMatchInlineSnapshot(` - // [ - // { - // "expected": "P1D", - // "str": "1d", - // }, - // { - // "expected": "P14D", - // "str": "2w", - // }, - // { - // "expected": "PT0.001S", - // "str": "1ms", - // }, - // { - // "expected": "PT0.1S", - // "str": "0.1s", - // }, - // { - // "expected": "Invalid date", - // "str": "1f", - // }, - // ] - // `); - // }); - it.each( convert` str | expected