code-server/ci/dev/test-e2e.sh

11 lines
214 B
Bash
Raw Normal View History

#!/usr/bin/env bash
set -euo pipefail
main() {
cd "$(dirname "$0")/../.."
2021-04-14 07:31:56 +07:00
cd test
2021-04-15 02:01:17 +07:00
PASSWORD=e45432jklfdsab CODE_SERVER_ADDRESS=http://localhost:8080 yarn folio --config=config.ts --reporter=list
}
main "$@"