Skip "403 Forbidden" error during test

Usually gives "false positive" results
This commit is contained in:
freearhey 2021-01-07 13:51:14 +03:00
parent 68f20192f5
commit 7e5c05148a
1 changed files with 2 additions and 1 deletions

View File

@ -37,7 +37,8 @@ async function test() {
if (
!item.status.ok &&
item.status.reason !== 'Timed out' &&
item.status.reason !== 'Duplicate'
item.status.reason !== 'Duplicate' &&
item.status.reason !== 'Server returned 403 Forbidden (access denied)'
) {
stats.failures++