Changeset 47122 for trunk/wp-tests-config-sample.php
- Timestamp:
- 01/29/2020 12:43:23 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-tests-config-sample.php
r46586 r47122 16 16 define( 'WP_DEFAULT_THEME', 'default' ); 17 17 18 // Test with multisite enabled. 19 // Alternatively, use the tests/phpunit/multisite.xml configuration file. 18 /* 19 * Test with multisite enabled. 20 * Alternatively, use the tests/phpunit/multisite.xml configuration file. 21 */ 20 22 // define( 'WP_TESTS_MULTISITE', true ); 21 23 22 // Force known bugs to be run. 23 // Tests with an associated Trac ticket that is still open are normally skipped. 24 /* 25 * Force known bugs to be run. 26 * Tests with an associated Trac ticket that is still open are normally skipped. 27 */ 24 28 // define( 'WP_TESTS_FORCE_KNOWN_BUGS', true ); 25 29 … … 29 33 // ** MySQL settings ** // 30 34 31 // This configuration file will be used by the copy of WordPress being tested. 32 // wordpress/wp-config.php will be ignored. 33 34 // WARNING WARNING WARNING! 35 // These tests will DROP ALL TABLES in the database with the prefix named below. 36 // DO NOT use a production database or one that is shared with something else. 35 /* 36 * This configuration file will be used by the copy of WordPress being tested. 37 * wordpress/wp-config.php will be ignored. 38 * 39 * WARNING WARNING WARNING! 40 * These tests will DROP ALL TABLES in the database with the prefix named below. 41 * DO NOT use a production database or one that is shared with something else. 42 */ 37 43 38 44 define( 'DB_NAME', 'youremptytestdbnamehere' );
Note: See TracChangeset
for help on using the changeset viewer.