File size: 977 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
import { deprecatedV1Flows } from '../registered-flows';
const frozenDeprecatedV1Flows = [
'site-setup',
'copy-site',
'newsletter',
'entrepreneur',
'readymade-template',
'update-design',
'update-options',
'domain-upsell',
'build',
'write',
'start-writing',
'connect-domain',
'transferring-hosted-site',
'domain-transfer',
'google-transfer',
'plugin-bundle',
'hundred-year-plan',
'domain-user-transfer',
'reblogging',
];
describe( 'Deprecated Flows', () => {
it( 'No new FlowV1 flows should be added as V1', () => {
const deprecatedV1FlowsKeys = Object.keys( deprecatedV1Flows );
const frozenDeprecatedV1FlowsKeys = frozenDeprecatedV1Flows;
const difference = deprecatedV1FlowsKeys.filter(
( x ) => ! frozenDeprecatedV1FlowsKeys.includes( x )
);
if ( difference.length > 0 ) {
throw new Error(
`Please use FlowV2 instead. Detected new V1 flows: ${ difference.join( ', ' ) }`
);
}
expect( difference ).toEqual( [] );
} );
} );
|