mirror of
https://github.com/wassname/talk.git
synced 2026-07-05 04:49:11 +08:00
16 lines
555 B
Bash
Executable File
16 lines
555 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# install selenium
|
|
selenium-standalone install
|
|
|
|
# Creating Admin Test User
|
|
./bin/cli-users create --flag_mode --email "admin@test.com" --password "testtest" --name "AdminTestUser" --role "admin"
|
|
|
|
# Creating Moderator Test User
|
|
./bin/cli-users create --flag_mode --email "moderator@test.com" --password "testtest" --name "ModeratorTestUser" --role "moderator"
|
|
|
|
# Creating Commenter Test User
|
|
./bin/cli-users create --flag_mode --email "commenter@test.com" --password "testtest" --name "CommenterTestUser"
|
|
|
|
./bin/cli -c .env-e2e serve --jobs &
|