Remove headless for canvas-3d develop branch (#3274)

main
Dmitry Kruchinin 5 years ago committed by GitHub
parent 284be86f28
commit c9f5c4d29f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -165,7 +165,11 @@ jobs:
cd ./tests cd ./tests
npm ci npm ci
if [[ ${{ github.ref }} == 'refs/heads/develop' ]]; then if [[ ${{ github.ref }} == 'refs/heads/develop' ]]; then
npx cypress run --headless --browser chrome --spec 'cypress/integration/${{ matrix.specs }}/**/*.js' if [[ ${{ matrix.specs }} != 'canvas3d_functionality' ]]; then
npx cypress run --headless --browser chrome --spec 'cypress/integration/${{ matrix.specs }}/**/*.js'
else
npx cypress run --browser chrome --spec 'cypress/integration/${{ matrix.specs }}/**/*.js'
fi
mv ./.nyc_output/out.json ./.nyc_output/out_${{ matrix.specs }}.json mv ./.nyc_output/out.json ./.nyc_output/out_${{ matrix.specs }}.json
else else
if [[ ${{ matrix.specs }} != 'canvas3d_functionality' ]]; then if [[ ${{ matrix.specs }} != 'canvas3d_functionality' ]]; then

Loading…
Cancel
Save