forked from DevinVinson/WordPress-Plugin-Boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy path.env.testing
More file actions
21 lines (20 loc) · 666 Bytes
/
.env.testing
File metadata and controls
21 lines (20 loc) · 666 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
PLUGIN_NAME="plugin_title"
PLUGIN_SLUG=plugin-slug
WP_ROOT_FOLDER="wordpress"
TEST_SITE_WP_ADMIN_PATH="/wp-admin"
TEST_SITE_DB_NAME="plugin_snake_lower_tests"
TEST_SITE_DB_HOST="127.0.0.1"
TEST_SITE_DB_USER="plugin-db-username"
TEST_SITE_DB_PASSWORD="plugin-slug"
TEST_SITE_TABLE_PREFIX="tests_"
TEST_DB_NAME="plugin_snake_lower_integration"
TEST_DB_HOST="127.0.0.1"
TEST_DB_PORT="63306"
TEST_DB_USER="root"
TEST_DB_PASSWORD="password"
TEST_TABLE_PREFIX="tests_"
TEST_SITE_WP_URL="http://localhost:8080/plugin-slug/"
TEST_SITE_WP_DOMAIN="localhost:8080"
TEST_SITE_ADMIN_EMAIL="email@example.org"
TEST_SITE_ADMIN_USERNAME="admin"
TEST_SITE_ADMIN_PASSWORD="password"