1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 09:46:22 +00:00

Edit .travis.yml to handle ES7 syntax problem

This commit is contained in:
asmsuechan
2017-04-25 00:05:19 -07:00
parent eb48f48f6b
commit b40d09fa86

View File

@@ -7,5 +7,10 @@ before_script:
- 'export DISPLAY=:99.0'
- 'sh -e /etc/init.d/xvfb start'
- 'sleep 3'
script: npm run lint && npm run test && grunt pre-build && npm run test:e2e
script:
- 'npm run lint'
- 'npm run test'
- 'if [ ${TRAVIS_NODE_VERSION} = "stable" ]; then
grunt pre-build;
npm run test:e2e;
fi'