Skip to content

Commit 9baed98

Browse files
committed
Fix CI?
1 parent ced340b commit 9baed98

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/e2e/block-bindings-site-editor.spec.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,19 @@
55
const { test, expect } = require( './fixtures' );
66

77
const PLUGIN_SLUG = 'secure-custom-fields';
8+
const TEST_PLUGIN_SLUG = 'scf-test-setup-post-types';
89
const FIELD_GROUP_LABEL = 'Product Details';
910
const TEXT_FIELD_LABEL = 'Product Name';
1011
const IMAGE_FIELD_LABEL = 'Product Image';
1112

1213
test.describe( 'Block Bindings in Site Editor', () => {
1314
test.beforeAll( async ( { requestUtils }: any ) => {
1415
await requestUtils.activatePlugin( PLUGIN_SLUG );
16+
await requestUtils.activatePlugin( TEST_PLUGIN_SLUG );
1517
} );
1618

1719
test.afterAll( async ( { requestUtils } ) => {
20+
await requestUtils.deactivatePlugin( TEST_PLUGIN_SLUG );
1821
await requestUtils.deactivatePlugin( PLUGIN_SLUG );
1922
await requestUtils.deleteAllPosts();
2023
} );

0 commit comments

Comments
 (0)