mirror of
https://github.com/ksyasuda/SubMiner.git
synced 2026-03-03 06:22:41 -08:00
feat(core): add Electron runtime, services, and app composition
This commit is contained in:
14
src/subsync/utils.test.ts
Normal file
14
src/subsync/utils.test.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import test from 'node:test';
|
||||
import assert from 'node:assert/strict';
|
||||
import { codecToExtension } from './utils';
|
||||
|
||||
test('codecToExtension maps stream/web formats to ffmpeg extractable extensions', () => {
|
||||
assert.equal(codecToExtension('subrip'), 'srt');
|
||||
assert.equal(codecToExtension('webvtt'), 'vtt');
|
||||
assert.equal(codecToExtension('vtt'), 'vtt');
|
||||
assert.equal(codecToExtension('ttml'), 'ttml');
|
||||
});
|
||||
|
||||
test('codecToExtension returns null for unsupported codecs', () => {
|
||||
assert.equal(codecToExtension('unsupported-codec'), null);
|
||||
});
|
||||
Reference in New Issue
Block a user