mirror of https://github.com/zulip/zulip.git
13 lines
426 B
Plaintext
13 lines
426 B
Plaintext
|
#!/bin/bash -e
|
||
|
|
||
|
cd "$(dirname "$0")"/..
|
||
|
|
||
|
email=iago@zulip.com
|
||
|
|
||
|
password=$(python manage.py print_initial_password "$email" | fgrep "$email" | awk '{ print $2 }')
|
||
|
cat > zerver/tests/frontend/test_credentials.js <<EOF
|
||
|
// Generated by tools/generate-test-credentials
|
||
|
var test_credentials = {default_user: {username: 'iago@zulip.com', password: '$password'}};
|
||
|
try { exports.test_credentials = test_credentials; } catch (e) {}
|
||
|
EOF
|