Create admin account on our own as it was removed upstream

This commit is contained in:
Johannes Zellner
2023-02-09 15:47:42 +01:00
parent 42321405b4
commit 0c4156dce9
3 changed files with 33 additions and 7 deletions

View File

@@ -27,10 +27,12 @@ describe('Application life cycle test', function () {
const LOCATION = 'test';
const TEST_TIMEOUT = 10000;
const EXEC_ARGS = { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' };
const ADMIN_USERNAME = 'admin'; // the login form is called email but accepts usernames
const ADMIN_PASSWORD = 'admin';
const DEVICE_NAME = 'FancyDevice';
const DEVICE_IDENTIFIER = 'device1';
const ADMIN_USERNAME = 'admin@cloudron.local';
const ADMIN_PASSWORD = 'admin';
const EMAIL = process.env.EMAIL;
const PASSWORD = process.env.PASSWORD;
var browser, app;