Update wp-tests-config-sample.php to run with WP_DEBUG by default. see #25282.

git-svn-id: https://develop.svn.wordpress.org/trunk@25571 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2013-09-23 16:17:59 +00:00
parent 40131fc188
commit df9b9dbbed

View File

@ -3,14 +3,16 @@
/* Path to the WordPress codebase you'd like to test. Add a backslash in the end. */
define( 'ABSPATH', dirname( __FILE__ ) . '/src/' );
// Test with multisite enabled: (previously -m)
// Test with multisite enabled.
// Alternatively, use the tests/phpunit/multisite.xml configuration file.
// define( 'WP_TESTS_MULTISITE', true );
// Force known bugs: (previously -f)
// Force known bugs to be run.
// Tests with an associated Trac ticket that is still open are normally skipped.
// define( 'WP_TESTS_FORCE_KNOWN_BUGS', true );
// Test with WordPress debug mode on (previously -d)
// define( 'WP_DEBUG', true );
// Test with WordPress debug mode (default).
define( 'WP_DEBUG', true );
// ** MySQL settings ** //