upskill-event-manager/wordpress-dev/wordpress/wp-tests-config.php
bengizmo d6211ee364 feat(testing): Implement HVAC_Test_User_Factory and update .gitignore
- Add HVAC_Test_User_Factory class with:
  * User creation with specific roles
  * Multiple role support
  * Persona management system
  * Account cleanup integration
- Create comprehensive test suite in HVAC_Test_User_Factory_Test.php
- Update testing improvement plan documentation
- Add implementation decisions to project memory bank
- Restructure .gitignore with:
  * Whitelist approach for better file management
  * Explicit backup exclusions
  * Specific bin directory inclusions

Part of the Account Management component from the testing framework improvement plan.
2025-04-14 17:41:36 -03:00

20 lines
No EOL
673 B
PHP

<?php
// Use existing database credentials for staging tests
define( 'DB_NAME', 'uberrxmprk' );
define( 'DB_USER', 'uberrxmprk' );
define( 'DB_PASSWORD', 'vRVr7GJCAZ' );
define( 'DB_HOST', 'localhost' );
define( 'DB_CHARSET', 'utf8' );
define( 'DB_COLLATE', '' );
// WordPress test environment configuration
define( 'ABSPATH', '/home/974670.cloudwaysapps.com/uberrxmprk/public_html/' );
define( 'WP_DEBUG', true );
// Test suite configuration
define( 'WP_TESTS_DOMAIN', 'wordpress-974670-5399585.cloudwaysapps.com' );
define( 'WP_TESTS_EMAIL', 'admin@example.com' );
define( 'WP_TESTS_TITLE', 'Test Blog' );
// Load WordPress test environment
$table_prefix = 'wptests_';