Files
zulip/tools/generate-test-credentials
Tim Abbott d0f2c46f25 generate_test_credentials: Use the email variable properly.
This makes it a bit easier to change the email in the test
credentials.
2016-04-13 13:19:02 -07:00

14 lines
434 B
Bash
Executable File

#!/usr/bin/env bash
set -e
cd "$(dirname "$0")"/..
email=iago@zulip.com
password=$(python manage.py print_initial_password "$email" | fgrep "$email" | awk '{ print $2 }')
cat > frontend_tests/casper_lib/test_credentials.js <<EOF
// Generated by tools/generate-test-credentials
var test_credentials = {default_user: {username: '$email', password: '$password'}};
try { exports.test_credentials = test_credentials; } catch (e) {}
EOF