test: remove invalid test and avoid jest pick up tests from emsdk folder.

This commit is contained in:
鲁树人
2022-11-26 19:21:30 +00:00
parent b1d97ea85c
commit 76b2676f38
2 changed files with 7 additions and 28 deletions

View File

@@ -1,20 +0,0 @@
// import { DecryptBuffer as DecryptQmcCacheBuffer } from '../qmccache';
// import fs from 'fs';
//
// const expectedBuffer = fs.readFileSync(__dirname + '/fixture/qmc_cache_expected.bin');
//
// const createInputBuffer = () => {
// const buffer = Buffer.alloc(256);
// for (let i = buffer.byteLength; i >= 0; i--) {
// buffer[i] = i;
// }
// return buffer;
// };
//
// describe('decrypt/qmccache', () => {
// it('should decrypt specified buffer correctly', () => {
// const input = createInputBuffer();
// DecryptQmcCacheBuffer(input);
// expect(input).toEqual(expectedBuffer);
// });
// });