jamesread hace 4 años
padre
commit
b97fa9ed4a
Se han modificado 2 ficheros con 2 adiciones y 2 borrados
  1. 1 1
      integration-tests/Makefile
  2. 1 1
      integration-tests/cypressRun.sh

+ 1 - 1
integration-tests/Makefile

@@ -4,7 +4,7 @@ container:
 	tar xavf OliveTin-*linux-amd64.tar.gz
 	docker rm -f olivetin && docker rmi -f olivetin
 	docker build -t olivetin:latest OliveTin-*linux-amd64/
-	docker create --name olivetin -p 1337:1337 -v `pwd`/config/:/config/ olivetin 
+	docker create --name olivetin -p 1337:1337 -v `pwd`/configs/:/config/ olivetin 
 
 cypress:
 	npm install

+ 1 - 1
integration-tests/cypressRun.sh

@@ -4,7 +4,7 @@ set -o xtrace
 
 echo "Running config $1"
 
-cp -f ./configs/config.$1.yaml ./config/config.yaml
+cp -f ./configs/config.$1.yaml ./configs/config.yaml
 docker start olivetin
 NO_COLOR=1 ./node_modules/.bin/cypress run --headless -s cypress/integration/$1/*  || true
 docker kill olivetin