mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2026-07-29 02:07:27 +08:00
37 lines
1.1 KiB
TypeScript
37 lines
1.1 KiB
TypeScript
const filePath = './tests/qa/resources/files';
|
|
|
|
export const disableGutenbergWelcomeGuidePlugin = {
|
|
name: 'Disable Gutenberg Welcome Guide',
|
|
slug: 'disable-gutenberg-welcome-guide',
|
|
zipFilePath: `${ filePath }/disable-gutenberg-welcome-guide.zip`,
|
|
};
|
|
|
|
export const disableNoncePlugin = {
|
|
name: 'Disable nonce check',
|
|
slug: 'disable-nonce-check',
|
|
zipFilePath: `${ filePath }/disable-nonce.zip`,
|
|
};
|
|
|
|
export const disableWcSetupWizard = {
|
|
name: 'Disable WC Setup Wizard',
|
|
slug: 'disable-wc-setup-wizard',
|
|
zipFilePath: `${ filePath }/disable-wc-setup-wizard.zip`,
|
|
};
|
|
|
|
export const disableWebhookVerificationPlugin = {
|
|
name: 'Disable webhook verification',
|
|
slug: 'disable-webhook-verification',
|
|
zipFilePath: `${ filePath }/disable-webhook-verification.zip`,
|
|
};
|
|
|
|
export const pcpPlugin = {
|
|
name: 'WooCommerce PayPal Payments',
|
|
slug: 'woocommerce-paypal-payments',
|
|
zipFilePath: `${ filePath }/woocommerce-paypal-payments.zip`,
|
|
};
|
|
|
|
export const subscriptionsPlugin = {
|
|
name: 'WooCommerce Subscriptions',
|
|
slug: 'woocommerce-subscriptions',
|
|
zipFilePath: `${ filePath }/woocommerce-subscriptions.zip`,
|
|
};
|