Skip to content

Commit

Permalink
Fixed a missing close quote (#585)
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-yao committed Oct 29, 2019
1 parent 44b2df1 commit fac5931
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ module.exports = {
data.scripts['test:unit'] = 'cross-env BASIC_AUTH=0 NODE_ENV=test jest --passWithNoTests'
}
if (results.e2e === true) {
data.scripts['cy:run'] = `cypress run -e TAGS='not @skip or @smoke`
data.scripts['cy:run'] = `cypress run -e TAGS='not @skip or @smoke'`
data.scripts['test:e2e'] = 'cross-env TEST=1 BASIC_AUTH=0 start-server-and-test start:build http://localhost:3000 cy:run'
data.scripts['test:smoke'] = 'cross-env TEST=1 BASIC_AUTH=0 start-server-and-test start:build http://localhost:3000 cy:run-smoke'
}
Expand Down

0 comments on commit fac5931

Please sign in to comment.