diff options
author | Matthew Somerville <matthew-github@dracos.co.uk> | 2019-06-04 12:18:07 +0100 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2019-06-04 17:46:25 +0100 |
commit | 55184614134e60132fb052fb7bd6539f2dd30657 (patch) | |
tree | 6848b6ab4ec09f671f71f5b141dfdc9420aac25a /bin/browser-tests | |
parent | fc68227e31791ba5635a2b3f0f00c7072243c056 (diff) |
[Cypress] Remove blacklistHosts CLI argument.
This was originally removed in 5d9a3dd03 and put back in de66ef715.
Diffstat (limited to 'bin/browser-tests')
-rwxr-xr-x | bin/browser-tests | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/browser-tests b/bin/browser-tests index fd3fc19d7..6950c651d 100755 --- a/bin/browser-tests +++ b/bin/browser-tests @@ -91,7 +91,7 @@ sub run { if (($run_cypress && !$run_server) || $pid) { # Parent, run the test runner (then kill the child) - my $exit = system("cypress", $cmd, '--config', 'pluginsFile=false,supportFile=false,blacklistHosts=[gaze.mysociety.org,*.openstreetmap.org]', '--project', '.cypress', @ARGV); + my $exit = system("cypress", $cmd, '--config', 'pluginsFile=false,supportFile=false', '--project', '.cypress', @ARGV); kill 'TERM', $pid if $pid; exit $exit >> 8; } else { |