mirror of
https://github.com/0x5eal/rbxts-pako.git
synced 2025-04-04 10:50:59 +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) {
|
||||
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);
|
||||
});
|
||||
|
||||
|
|
|
@ -114,7 +114,7 @@ describe('Inflate strategy', function () {
|
|||
it('Z_RLE', function(done) {
|
||||
testInflate(samples, {}, { strategy: 3 }, done);
|
||||
});
|
||||
it.skip('Z_FIXED', function(done) {
|
||||
it('Z_FIXED', function(done) {
|
||||
testInflate(samples, {}, { strategy: 4 }, done);
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue