Explorar el Código

feat(payments-plugin): Correct test naming

Martijn hace 1 año
padre
commit
07d9b4d8a1
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      packages/payments-plugin/e2e/mollie-payment.e2e-spec.ts

+ 2 - 2
packages/payments-plugin/e2e/mollie-payment.e2e-spec.ts

@@ -139,7 +139,7 @@ let order: TestOrderFragmentFragment;
 let serverPort: number;
 const SURCHARGE_AMOUNT = -20000;
 
-describe('Mollie payments (with useDynamicRedirectUrl set to true)', () => {
+describe('Mollie payments with useDynamicRedirectUrl=false', () => {
     beforeAll(async () => {
         const devConfig = mergeConfig(testConfig(), {
             plugins: [MolliePlugin.init({ vendureHost: mockData.host })],
@@ -637,7 +637,7 @@ describe('Mollie payments (with useDynamicRedirectUrl set to true)', () => {
     });
 });
 
-describe('Mollie payments (with useDynamicRedirectUrl set to true)', () => {
+describe('Mollie payments with useDynamicRedirectUrl=true', () => {
     beforeAll(async () => {
         const devConfig = mergeConfig(testConfig(), {
             plugins: [MolliePlugin.init({ vendureHost: mockData.host, useDynamicRedirectUrl: true })],