2020-04-30 11:52:54 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
|
|
|
|
main() {
|
|
|
|
cd "$(dirname "$0")/../.."
|
2021-04-14 00:31:56 +00:00
|
|
|
cd test
|
2021-04-14 21:45:30 +00:00
|
|
|
# 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 "$@"
|
2020-04-30 11:52:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
main "$@"
|