woocommerce-paypal-payments/tests/qa/resources/e2e-plugins.ts
Misha Utkin dddd17cd2c
Some checks are pending
CI / coding-standards-analysis-php (push) Waiting to run
CI / static-code-analysis-php (push) Waiting to run
CI / tests-unit-php (7.4) (push) Waiting to run
CI / tests-unit-php (8.0) (push) Waiting to run
CI / tests-unit-php (8.1) (push) Waiting to run
CI / tests-unit-php (8.2) (push) Waiting to run
CI / tests-unit-php (8.3) (push) Waiting to run
CI / tests-unit-php (8.4) (push) Waiting to run
Add snippet for negative checkout fee
2026-06-23 18:04:03 +02:00

43 lines
1.2 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`,
};
export const negative12FeePlugin = {
name: 'Negative 12 Fee',
slug: 'negative-12-fee',
zipFilePath: `${ filePath }/negative-12-fee.zip`,
};