Remove an invalid test

This commit is contained in:
Jerome Wu 2022-08-14 20:37:11 +08:00
parent 538ecd21d8
commit 2c39307290

View File

@ -48,16 +48,6 @@ describe('run()', () => {
} }
}, 500); }, 500);
}).timeout(TIMEOUT); }).timeout(TIMEOUT);
it('should terminate the run if exit is called', async () => {
const ffmpeg = createFFmpeg(OPTIONS);
await ffmpeg.load();
ffmpeg.run('-h').catch(e=> {
expect(e).to.be.equal('ffmpeg has exited')
});
expect(ffmpeg.exit()).to.throw();
}).timeout(TIMEOUT);
}); });
describe('FS()', () => { describe('FS()', () => {