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-05 17:54:31 +0100 |
commit | ecb2e1af0788a24f216777ea9545abb26637cd96 (patch) | |
tree | 8a1be43753db93c054e565202a3e168fbe7c07d3 /bin/browser-tests | |
parent | 078725f2d8dc7b2ceab372bbc178eacace20ad70 (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 { |