Skip to content

Commit

Permalink
Remove debugging from batchAdd tests
Browse files Browse the repository at this point in the history
  • Loading branch information
prawnsalad committed May 15, 2020
1 parent b628d1f commit b6e534f
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tests/unit/BatchAdd.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,8 @@ describe('batchedAdd.vue', () => {
});

it('should process 3 items in a batch', (done) => {
let singleItem = (item) => {
console.log('singleItem:', item);
};
let singleItem = (item) => {};
let batchItems = (items) => {
console.log('batchItems:', items);
if (items.length !== 3) {
done(new Error(`Expected 3 items in a batch, found ${items.length}`));
} else {
Expand Down

0 comments on commit b6e534f

Please sign in to comment.