mirror of https://github.com/CesiumGS/cesium.git
13 lines
333 B
Bash
Executable File
13 lines
333 B
Bash
Executable File
#!/bin/bash
|
|
set -ev
|
|
if [ $TRAVIS_BRANCH != "cesium.com" ]; then
|
|
# Various Node.js smoke-screen tests
|
|
node -e "const Cesium = require('./');"
|
|
NODE_ENV=development node Specs/test.cjs
|
|
NODE_ENV=production node Specs/test.cjs
|
|
node Specs/test.mjs
|
|
|
|
node packages/engine/Specs/test.mjs
|
|
node packages/widgets/Specs/test.mjs
|
|
fi
|