Throw error when corePath is not a string

This commit is contained in:
Jerome Wu
2020-11-20 12:55:22 +08:00
parent 24e7430daf
commit c51cb50b7a
2 changed files with 12 additions and 0 deletions

View File

@@ -1,6 +1,15 @@
const { createFFmpeg } = FFmpeg;
describe('load()', () => {
it('should throw error when corePath is not a string', async () => {
const ffmpeg = createFFmpeg({ ...OPTIONS, corePath: null });
try {
await ffmpeg.load();
} catch (e) {
expect(e).to.be.an('Error');
}
});
it('should throw error when not called before FS() and run()', () => {
const ffmpeg = createFFmpeg(OPTIONS);
expect(() => ffmpeg.FS('readdir', 'dummy')).to.throw();