Skip to content

Commit

Permalink
remove temporary test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
adrian-gierakowski committed Mar 30, 2018
1 parent a6c7f11 commit 4ade7f5
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions test/driverSpec.js
Expand Up @@ -224,19 +224,6 @@ describe('redis-fast-driver', function() {
assert.ok(len > 128);
});

it.only('command with many args, significantly larger then the buffer', async function() {
const commandBufferSize = 4096;

const keys = Array(Math.ceil(commandBufferSize / 18 * 2)).fill('table:prop_name:id');
await rawCall(['MGET'].concat(keys));
});

it.only('command in which last arg causes reallocation', async function() {
const commandBufferSize = 4096;
const bigBuff = Array(commandBufferSize*3).join('+');
await rawCall(['SET', 'key', bigBuff]);
});

describe('errors', function() {

it('incr a string', async function() {
Expand Down

0 comments on commit 4ade7f5

Please sign in to comment.