Skip to content

Commit df9b9db

Browse files
committed
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
1 parent 40131fc commit df9b9db

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

wp-tests-config-sample.php

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,16 @@
33
/* Path to the WordPress codebase you'd like to test. Add a backslash in the end. */
44
define( 'ABSPATH', dirname( __FILE__ ) . '/src/' );
55

6-
// Test with multisite enabled: (previously -m)
6+
// Test with multisite enabled.
7+
// Alternatively, use the tests/phpunit/multisite.xml configuration file.
78
// define( 'WP_TESTS_MULTISITE', true );
89

9-
// Force known bugs: (previously -f)
10+
// Force known bugs to be run.
11+
// Tests with an associated Trac ticket that is still open are normally skipped.
1012
// define( 'WP_TESTS_FORCE_KNOWN_BUGS', true );
1113

12-
// Test with WordPress debug mode on (previously -d)
13-
// define( 'WP_DEBUG', true );
14+
// Test with WordPress debug mode (default).
15+
define( 'WP_DEBUG', true );
1416

1517
// ** MySQL settings ** //
1618

0 commit comments

Comments
 (0)