aboutsummaryrefslogtreecommitdiffstats
path: root/Vagrantfile
diff options
context:
space:
mode:
authorMatthew Somerville <matthew-github@dracos.co.uk>2018-03-12 13:53:43 +0000
committerMatthew Somerville <matthew-github@dracos.co.uk>2018-03-15 08:55:11 +0000
commitb5c88eda2e87502872419edda10044c2d5b7c607 (patch)
tree7a98090f8e36835e70cab173c3927824927f1a3b /Vagrantfile
parentdbbf26e8ba5b41e3672566addfc7d67e9dc1af67 (diff)
Add Cypress testing.
Diffstat (limited to 'Vagrantfile')
-rwxr-xr-xVagrantfile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Vagrantfile b/Vagrantfile
index 536974693..b3647ad2b 100755
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -23,6 +23,8 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# within the machine from a port on the host machine. In the example below,
# accessing "localhost:8080" will access port 80 on the guest machine.
config.vm.network :forwarded_port, guest: 3000, host: 3000
+ # And 3001 for the Cypress test server
+ config.vm.network :forwarded_port, guest: 3001, host: 3001
config.vm.synced_folder ".", "/home/vagrant/fixmystreet", :owner => "vagrant", :group => "vagrant"