From 2c393072905ed141e85a77cad4063c25ecefdabe Mon Sep 17 00:00:00 2001 From: Jerome Wu Date: Sun, 14 Aug 2022 20:37:11 +0800 Subject: [PATCH] Remove an invalid test --- tests/ffmpeg.test.js | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/tests/ffmpeg.test.js b/tests/ffmpeg.test.js index 270ad3d..2a434cd 100644 --- a/tests/ffmpeg.test.js +++ b/tests/ffmpeg.test.js @@ -48,16 +48,6 @@ describe('run()', () => { } }, 500); }).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()', () => {