Skip to content

Commit

Permalink
Updated dependencies with security alerts
Browse files Browse the repository at this point in the history
  • Loading branch information
bouiboui committed Mar 31, 2022
1 parent 733bf25 commit b32a3a1
Show file tree
Hide file tree
Showing 2 changed files with 260 additions and 107 deletions.
4 changes: 2 additions & 2 deletions test/linear16test.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ describe('linear16', () => {
});
it('should work normally', async () => {
const outFile = await linear16('./test/test.m4a', './test/test.wav');
assert.deepEqual(true, fs.existsSync(outFile));
assert.deepStrictEqual(true, fs.existsSync(outFile));
fs.unlinkSync(outFile);
});
it('should accept object-like parameters', async () => {
const outFile = await linear16({inPath: './test/test.m4a', outPath: './test/test.wav'});
assert.deepEqual(true, fs.existsSync(outFile));
assert.deepStrictEqual(true, fs.existsSync(outFile));
fs.unlinkSync(outFile);
});
});
Loading

0 comments on commit b32a3a1

Please sign in to comment.