From bcbf1037845baab237698eea6e94500fb4e1bc53 Mon Sep 17 00:00:00 2001 From: David Pepper <36296660+david-pepper@users.noreply.github.com> Date: Fri, 13 Sep 2024 12:16:31 +0100 Subject: [PATCH 1/2] add China and Qatar to non servicable countries --- client/components/mma/shared/NonServiceableCountries.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/components/mma/shared/NonServiceableCountries.ts b/client/components/mma/shared/NonServiceableCountries.ts index 26390fa54..68964d994 100644 --- a/client/components/mma/shared/NonServiceableCountries.ts +++ b/client/components/mma/shared/NonServiceableCountries.ts @@ -34,6 +34,7 @@ export const nonServiceableCountries: string[] = [ 'Cayman Islands', 'Chad', 'Chile', + 'China', 'Christmas Island', 'Cocos (Keeling) Islands', 'Colombia', @@ -121,6 +122,7 @@ export const nonServiceableCountries: string[] = [ 'Philippines', 'Pitcairn', 'Puerto Rico', + 'Qatar', 'Reunion', 'Rwanda', 'Saint Barthelemy', From 04d38aa95f566cffdb646b8ce6008c2deeea57f8 Mon Sep 17 00:00:00 2001 From: Richard Bangay Date: Mon, 16 Sep 2024 15:24:30 +0100 Subject: [PATCH 2/2] add one of the new blocked countries to the cypress mocked test for productSwitch --- client/fixtures/productBuilder/productBuilder.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/fixtures/productBuilder/productBuilder.ts b/client/fixtures/productBuilder/productBuilder.ts index 64f58a13e..2153f98c1 100644 --- a/client/fixtures/productBuilder/productBuilder.ts +++ b/client/fixtures/productBuilder/productBuilder.ts @@ -143,7 +143,7 @@ export class ProductBuilder { } nonServiceableCountry() { - this.productToBuild.billingCountry = 'New Caledonia'; + this.productToBuild.billingCountry = 'Qatar'; return this; }