Changeset 47198 for trunk/wp-tests-config-sample.php
- Timestamp:
- 02/06/2020 06:31:22 AM (6 years ago)
- File:
-
- 1 edited
-
trunk/wp-tests-config-sample.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-tests-config-sample.php
r47122 r47198 3 3 /* Path to the WordPress codebase you'd like to test. Add a forward slash in the end. */ 4 4 if ( defined( 'WP_RUN_CORE_TESTS' ) && WP_RUN_CORE_TESTS ) { 5 define( 'ABSPATH', dirname( __FILE__ ). '/build/' );5 define( 'ABSPATH', __DIR__ . '/build/' ); 6 6 } else { 7 define( 'ABSPATH', dirname( __FILE__ ). '/src/' );7 define( 'ABSPATH', __DIR__ . '/src/' ); 8 8 } 9 9
Note: See TracChangeset
for help on using the changeset viewer.