12 lines
227 B
Bash
Executable File
12 lines
227 B
Bash
Executable File
#!/usr/bin/env sh
|
|
set -eu
|
|
|
|
set -a
|
|
. ./.env
|
|
set +a
|
|
|
|
./scripts/set-first-broker-login-mode.sh secure
|
|
npm --prefix e2e ci
|
|
MOCK_GOOGLE_USER_PASSWORD="$MOCK_GOOGLE_USER_PASSWORD" \
|
|
npm --prefix e2e run test:federation-zero-change
|