From ca619be1329a96a5a1f1159789bcc0d191d486a4 Mon Sep 17 00:00:00 2001 From: Elliot Winkler Date: Wed, 7 Jan 2026 15:03:33 -0700 Subject: [PATCH] Add a new property to NetworkStatus for testing --- packages/network-controller/src/constants.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/network-controller/src/constants.ts b/packages/network-controller/src/constants.ts index 1708cc2ebf6..7a36f37be94 100644 --- a/packages/network-controller/src/constants.ts +++ b/packages/network-controller/src/constants.ts @@ -31,6 +31,10 @@ export enum NetworkStatus { * status only applies to Infura networks. */ Blocked = 'blocked', + /** + * Some other status for testing. + */ + Test = 'test', } export const INFURA_BLOCKED_KEY = 'countryBlocked';