Skip to content

Commit

Permalink
rm extra test func
Browse files Browse the repository at this point in the history
  • Loading branch information
jalal246 committed Sep 11, 2017
1 parent 2ed9b02 commit 401ff25
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions test/general.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,6 @@ const q2 = ' fish ';
const q3 = ' goat ';
const q4 = ' sheep ';

const qpool = new QPool();
qpool.push('pigs, ');
qpool.push('goats, ');
qpool.push('sheep.');
console.log(qpool.get()); // pigs, goats, sheep.
qpool.shift();
console.log(qpool.get()); // goats, sheep.
qpool.pop();
console.log(qpool.get()); // goats,
qpool.unshift('sheep, ');
console.log(qpool.get());
console.log(qpool.elementsLength()); // 2
console.log(qpool.elementsSize()); // [7 , 6]
console.log(qpool.length()); // 13

describe('QPool - general prototypes', () => {
const tq = new QPool();
it('push 4 inputs', () => {
Expand Down

0 comments on commit 401ff25

Please sign in to comment.