0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-22 14:39:45 -05:00

🚧 💚 Fixing tests

This commit is contained in:
mathieu.brunot 2019-02-15 20:46:51 +01:00
parent d8f5c256b7
commit 530185782d
No known key found for this signature in database
GPG key ID: 81584BEAF692D7E0
2 changed files with 3 additions and 3 deletions

View file

@ -16,6 +16,8 @@ branches:
install:
- ./manage.sh help
- nvm install $NODE_VERSION
- node --version
before_script:
- env | sort

View file

@ -1,5 +1,5 @@
#!/usr/bin/env bash
set -ex
set -e
REV=`git rev-parse --short HEAD`
IMGNAME="uxbox"
@ -41,8 +41,6 @@ function test {
echo "Testing frontend..."
cd ./frontend
./scripts/build-tests
nvm install $NODE_VERSION
node --version
node ./out/tests.js
cd ..
}