We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40131fc commit df9b9dbCopy full SHA for df9b9db
1 file changed
wp-tests-config-sample.php
@@ -3,14 +3,16 @@
3
/* Path to the WordPress codebase you'd like to test. Add a backslash in the end. */
4
define( 'ABSPATH', dirname( __FILE__ ) . '/src/' );
5
6
-// Test with multisite enabled: (previously -m)
+// Test with multisite enabled.
7
+// Alternatively, use the tests/phpunit/multisite.xml configuration file.
8
// define( 'WP_TESTS_MULTISITE', true );
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.
12
// define( 'WP_TESTS_FORCE_KNOWN_BUGS', true );
13
-// Test with WordPress debug mode on (previously -d)
-// define( 'WP_DEBUG', true );
14
+// Test with WordPress debug mode (default).
15
+define( 'WP_DEBUG', true );
16
17
// ** MySQL settings ** //
18
0 commit comments