File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change 55const { test, expect } = require ( './fixtures' ) ;
66
77const PLUGIN_SLUG = 'secure-custom-fields' ;
8+ const TEST_PLUGIN_SLUG = 'scf-test-setup-post-types' ;
89const FIELD_GROUP_LABEL = 'Product Details' ;
910const TEXT_FIELD_LABEL = 'Product Name' ;
1011const IMAGE_FIELD_LABEL = 'Product Image' ;
1112
1213test . 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 } ) ;
You can’t perform that action at this time.
0 commit comments