Skip to content

Commit

Permalink
remove logs #108
Browse files Browse the repository at this point in the history
  • Loading branch information
endel committed Jun 1, 2021
1 parent 85af368 commit d3ce63d
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions test/ArraySchemaTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -236,15 +236,14 @@ describe("ArraySchema Tests", () => {
state.cards.shift();
state.cards.unshift(3);

console.log("cards", state.cards);
console.log("cards.$items", state.cards['$items']);
console.log("cards.at(0)", state.cards.at(0));

assert.deepStrictEqual(3, state.cards.at(0));
// console.log("cards", state.cards);
// console.log("cards.$items", state.cards['$items']);
// console.log("cards.at(0)", state.cards.at(0));

decodedState.decode(state.encode());

assert.deepStrictEqual(3, decodedState.cards[0]);
assert.deepStrictEqual(3, state.cards[0]);
});
});

Expand Down

0 comments on commit d3ce63d

Please sign in to comment.