Skip "403 Forbidden" error during test
Usually gives "false positive" results
This commit is contained in:
parent
68f20192f5
commit
7e5c05148a
|
@ -37,7 +37,8 @@ async function test() {
|
||||||
if (
|
if (
|
||||||
!item.status.ok &&
|
!item.status.ok &&
|
||||||
item.status.reason !== 'Timed out' &&
|
item.status.reason !== 'Timed out' &&
|
||||||
item.status.reason !== 'Duplicate'
|
item.status.reason !== 'Duplicate' &&
|
||||||
|
item.status.reason !== 'Server returned 403 Forbidden (access denied)'
|
||||||
) {
|
) {
|
||||||
stats.failures++
|
stats.failures++
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue