Skip to content

Commit

Permalink
add
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexKamaev committed Sep 4, 2023
1 parent 75e7c19 commit 74e94e2
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,14 @@ for (let i = 0; i < 3; i++) {
await t.click('button');

/*eslint-disable no-console */
console.log('request count: ' + logger.requests.length);
console.log('----------------------------------------------');
console.log('request count: ' + logger.requests.length);
console.log(JSON.stringify(logger.requests[0]));
console.log('filtered count: ', logger.requests.filter(r => !!r.response.body).length);

requestCounter.add(logger.requests.length);

console.log('counter: ', requestCounter.get());
});
}

Expand Down

0 comments on commit 74e94e2

Please sign in to comment.