enabled strategy=Z_FIXED tests

This commit is contained in:
Vitaly Puzrin 2014-03-20 06:39:28 +04:00
parent 160301218a
commit c92edab663
2 changed files with 2 additions and 2 deletions

View file

@ -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);
});

View file

@ -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);
});