Archived
1
0

refactor: pass all args to test-e2e script

This commit is contained in:
Joe Previte
2021-04-14 14:45:30 -07:00
parent d6f0725399
commit 450fcd5ba7
2 changed files with 7 additions and 3 deletions

View File

@ -4,7 +4,9 @@ set -euo pipefail
main() {
cd "$(dirname "$0")/../.."
cd test
PASSWORD=e45432jklfdsab CODE_SERVER_ADDRESS=http://localhost:8080 yarn folio --config=config.ts --reporter=list
# We set these environment variables because they're used in the e2e tests
# they don't have to be these values, but these are the defaults
PASSWORD=e45432jklfdsab CODE_SERVER_ADDRESS=http://localhost:8080 yarn folio --config=config.ts --reporter=list "$@"
}
main "$@"