Changeset 49835
- Timestamp:
- 12/18/2020 02:38:28 PM (4 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/phpunit-tests.yml
r49786 r49835 258 258 run: npm run test:${{ env.PHPUNIT_SCRIPT }} -- --verbose -c tests/phpunit/multisite.xml 259 259 260 - name: Run AJAX tests as a multisite install 261 run: npm run test:${{ env.PHPUNIT_SCRIPT }} -- --verbose -c tests/phpunit/multisite.xml --group ajax 262 260 263 - name: Run ms-files tests as a multisite install 261 264 run: npm run test:${{ env.PHPUNIT_SCRIPT }} -- --verbose -c tests/phpunit/multisite.xml --group ms-files -
trunk/Gruntfile.js
r49758 r49835 673 673 cmd: 'phpunit', 674 674 args: ['--verbose', '-c', 'tests/phpunit/multisite.xml'] 675 }, 676 'ms-ajax': { 677 cmd: 'phpunit', 678 args: ['--verbose', '-c', 'tests/phpunit/multisite.xml', '--group', 'ajax'] 675 679 }, 676 680 'ms-files': { -
trunk/tests/phpunit/tests/ajax/Attachments.php
r48937 r49835 66 66 */ 67 67 public function test_wp_ajax_send_attachment_to_editor_should_return_a_link() { 68 $this->skipWithMultisite(); 69 68 70 // Become an administrator. 69 71 $post = $_POST; -
trunk/tests/phpunit/tests/ajax/DeletePlugin.php
r48997 r49835 127 127 128 128 public function test_delete_plugin() { 129 $this->skipWithMultisite(); 129 130 $this->_setRole( 'administrator' ); 130 131 -
trunk/tests/phpunit/tests/ajax/ManageThemes.php
r48939 r49835 103 103 104 104 public function test_update_theme() { 105 $this->skipWithMultisite(); 105 106 $this->_setRole( 'administrator' ); 106 107 … … 140 141 141 142 function test_uppercase_theme_slug() { 143 $this->skipWithMultisite(); 142 144 $this->_setRole( 'administrator' ); 143 145 -
trunk/tests/phpunit/tests/ajax/UpdatePlugin.php
r48997 r49835 131 131 132 132 public function test_update_plugin() { 133 $this->skipWithMultisite(); 133 134 $this->_setRole( 'administrator' ); 134 135
Note: See TracChangeset
for help on using the changeset viewer.