Make WordPress Core

Ticket #46567: 46567.2.diff

File 46567.2.diff, 2.5 KB (added by desrosj, 6 years ago)
  • Gruntfile.js

     
    653653                                cmd: 'phpunit',
    654654                                args: ['--verbose', '-c', 'tests/phpunit/multisite.xml']
    655655                        },
     656                        'ms-ajax': {
     657                                cmd: 'phpunit',
     658                                args: ['--verbose', '-c', 'tests/phpunit/multisite.xml', '--group', 'ajax']
     659                        },
    656660                        'ms-files': {
    657661                                cmd: 'phpunit',
    658662                                args: ['--verbose', '-c', 'tests/phpunit/multisite.xml', '--group', 'ms-files']
  • tests/phpunit/tests/ajax/Attachments.php

     
    6565         * @ticket 36578
    6666         */
    6767        public function test_wp_ajax_send_attachment_to_editor_should_return_a_link() {
     68                $this->skipWithMultisite();
     69
    6870                // Become an administrator
    6971                $post    = $_POST;
    7072                $user_id = self::factory()->user->create(
  • tests/phpunit/tests/ajax/DeletePlugin.php

     
    127127        }
    128128
    129129        public function test_delete_plugin() {
     130                $this->skipWithMultisite();
    130131                $this->_setRole( 'administrator' );
    131132
    132133                $_POST['_ajax_nonce'] = wp_create_nonce( 'updates' );
  • tests/phpunit/tests/ajax/ManageThemes.php

     
    102102        }
    103103
    104104        public function test_update_theme() {
     105                $this->skipWithMultisite();
     106
    105107                $this->_setRole( 'administrator' );
    106108
    107109                $_POST['_ajax_nonce'] = wp_create_nonce( 'updates' );
     
    139141        }
    140142
    141143        function test_uppercase_theme_slug() {
     144                $this->skipWithMultisite();
    142145                $this->_setRole( 'administrator' );
    143146
    144147                $_POST['_ajax_nonce'] = wp_create_nonce( 'updates' );
  • tests/phpunit/tests/ajax/UpdatePlugin.php

     
    131131        }
    132132
    133133        public function test_update_plugin() {
     134                $this->skipWithMultisite();
    134135                $this->_setRole( 'administrator' );
    135136
    136137                $_POST['_ajax_nonce'] = wp_create_nonce( 'updates' );