This commit is contained in:
jeromewu
2019-11-06 13:07:12 +00:00
parent dbcb56b55c
commit c01845d28a
16 changed files with 1286 additions and 5 deletions

8
scripts/test-helper.js Normal file
View File

@@ -0,0 +1,8 @@
const constants = require('../tests/constants');
global.expect = require('expect.js');
global.FFmpeg = require('../src');
Object.keys(constants).forEach((key) => {
global[key] = constants[key];
});