mirror of
https://github.com/0x5eal/rbxts-pako.git
synced 2025-05-04 10:33:48 +01:00
enabled strategy=Z_FIXED tests
This commit is contained in:
parent
160301218a
commit
c92edab663
2 changed files with 2 additions and 2 deletions
|
@ -150,7 +150,7 @@ describe('Deflate strategy', function () {
|
||||||
it('Z_RLE', function(done) {
|
it('Z_RLE', function(done) {
|
||||||
testDeflate(zlib.createDeflate, pako.deflate, samples, { strategy: 3 }, done);
|
testDeflate(zlib.createDeflate, pako.deflate, samples, { strategy: 3 }, done);
|
||||||
});
|
});
|
||||||
it.skip('Z_FIXED', function(done) {
|
it('Z_FIXED', function(done) {
|
||||||
testDeflate(zlib.createDeflate, pako.deflate, samples, { strategy: 4 }, done);
|
testDeflate(zlib.createDeflate, pako.deflate, samples, { strategy: 4 }, done);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -114,7 +114,7 @@ describe('Inflate strategy', function () {
|
||||||
it('Z_RLE', function(done) {
|
it('Z_RLE', function(done) {
|
||||||
testInflate(samples, {}, { strategy: 3 }, done);
|
testInflate(samples, {}, { strategy: 3 }, done);
|
||||||
});
|
});
|
||||||
it.skip('Z_FIXED', function(done) {
|
it('Z_FIXED', function(done) {
|
||||||
testInflate(samples, {}, { strategy: 4 }, done);
|
testInflate(samples, {}, { strategy: 4 }, done);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue