Make WordPress Core

Changeset 54914


Ignore:
Timestamp:
11/30/2022 02:05:58 PM (2 years ago)
Author:
Bernhard Reiter
Message:

Build/Test Tools: Stylistic changes to Gutenberg e2e test.

Make some stylistic changes (multiline comment formatting, test description) that had been suggested during code review and that didn't make it into the previous commit.

Props costdev.
Follows [54913].
See #57197.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/e2e/specs/gutenberg-plugin.test.js

    r54913 r54914  
    1515    } );
    1616
    17     it( 'Activate the Gutenberg plugin', async () => {
     17    it( 'should activate', async () => {
    1818        await activatePlugin( 'gutenberg' );
    19         // If plugin activation fails, it will time out and throw an error,
    20         // since the activatePlugin helper is looking for a `.deactivate` link
    21         // which is only there if activation succeeds.
     19        /*
     20         * If plugin activation fails, it will time out and throw an error,
     21         * since the activatePlugin helper is looking for a `.deactivate` link
     22         * which is only there if activation succeeds.
     23         */
    2224        await deactivatePlugin( 'gutenberg' );
    2325    } );
Note: See TracChangeset for help on using the changeset viewer.