Skip to content

Commit

Permalink
test: rm unused console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
reiniiriarios committed Apr 27, 2024
1 parent 506c748 commit 343ea17
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions test/specs/page.books.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,11 @@ describe("books page", () => {
for await (const sortButton of sortButtons) {
await sortButton.click();
const order = await sortButton.getAttribute("data-val");
console.log(order);
bookLinks = await $$(".bookList .book > a");
let n = 0;
// Check order
for await (const bookLink of bookLinks) {
const href = await bookLink.getAttribute("href");
console.log(href);
expect(bookOrder[order][n]).toBe(href);
n++;
}
Expand Down

0 comments on commit 343ea17

Please sign in to comment.