From fc81e020260d6ada651a40c4c00cc256432d8577 Mon Sep 17 00:00:00 2001 From: Ajay Date: Wed, 22 Jun 2022 18:58:49 -0400 Subject: [PATCH] Fix exporter test --- test/{extractor.test.ts => exporter.test.ts} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename test/{extractor.test.ts => exporter.test.ts} (98%) diff --git a/test/extractor.test.ts b/test/exporter.test.ts similarity index 98% rename from test/extractor.test.ts rename to test/exporter.test.ts index 5345c651..dd589db1 100644 --- a/test/extractor.test.ts +++ b/test/exporter.test.ts @@ -54,9 +54,9 @@ describe("Export segments", () => { const result = exportTimes(segments); expect(result).toBe( - "0:00 - 0:10 Chapter 1\n" + - "0:20 Highlight\n" + - "0:30 - 0:40 Sponsor\n" + "0:00.000 - 0:10.000 Chapter 1\n" + + "0:20.000 Highlight\n" + + "0:30.000 - 0:40.000 Sponsor" ); });