Skip "403 Forbidden" error during test

Usually gives "false positive" results
pull/1904/head
freearhey 4 years ago
parent 68f20192f5
commit 7e5c05148a

@ -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++

Loading…
Cancel
Save