diff options
author | Ajay <[email protected]> | 2022-06-22 18:58:49 -0400 |
---|---|---|
committer | Ajay <[email protected]> | 2022-06-22 18:58:49 -0400 |
commit | fc81e020260d6ada651a40c4c00cc256432d8577 (patch) | |
tree | bff2c8916477f651be886858cd510b3ec9029cae /test | |
parent | e12d5ff10a6b7e251533b57732b69aa57df8a1a2 (diff) | |
download | SponsorBlock-fc81e020260d6ada651a40c4c00cc256432d8577.tar.gz SponsorBlock-fc81e020260d6ada651a40c4c00cc256432d8577.zip |
Fix exporter test
Diffstat (limited to 'test')
-rw-r--r-- | test/exporter.test.ts (renamed from test/extractor.test.ts) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/extractor.test.ts b/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" ); }); |