Skip to content

Commit

Permalink
chore: remove console.log from test
Browse files Browse the repository at this point in the history
  • Loading branch information
MellKam committed Feb 20, 2024
1 parent 54b7f0d commit 22aea41
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion pagination.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@ Deno.test("CursorPageIterator: asyncIterator", async () => {

for (let i = 0; i < totalMockItems; i++) {
const result = await iter.next();
console.log(result);
assertEquals(result, {
done: false,
value: mockArtists[i],
Expand Down

0 comments on commit 22aea41

Please sign in to comment.