Changeset 58046
- Timestamp:
- 04/26/2024 10:29:26 AM (7 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/e2e/specs/gutenberg-plugin.test.js
r56926 r58046 30 30 expect( plugin.status ).toBe( 'inactive' ); 31 31 32 await requestUtils.activatePlugin( 'gutenberg' ); 32 try { 33 await requestUtils.activatePlugin( 'gutenberg' ); 34 } catch ( error ) { 35 if ( 36 typeof error === 'object' && 37 error !== null && 38 Object.prototype.hasOwnProperty.call( error, 'code' ) && 39 error.code === 'plugin_wp_incompatible' 40 ) { 41 test.skip(); 42 } else { 43 throw error; 44 } 45 } 33 46 34 47 plugin = await requestUtils.rest( {
Note: See TracChangeset
for help on using the changeset viewer.