Skip to content

Commit cc88b1e

Browse files
committed
Add naga-staging
1 parent c16d129 commit cc88b1e

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

packages/e2e/src/helper/createEnvVars.ts

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
const supportedNetworks = ['naga-local', 'naga-test', 'naga-dev'] as const;
1+
const supportedNetworks = [
2+
'naga-local',
3+
'naga-test',
4+
'naga-staging',
5+
'naga-dev',
6+
] as const;
27
type EnvName = 'local' | 'live';
38

49
export type EnvVars = {
@@ -71,7 +76,11 @@ export function createEnvVars(): EnvVars {
7176
}
7277

7378
// -- live networks
74-
if (network === 'naga-dev' || network === 'naga-test') {
79+
if (
80+
network === 'naga-dev' ||
81+
network === 'naga-test' ||
82+
network === 'naga-staging'
83+
) {
7584
const liveRpcUrl = process.env['LIT_YELLOWSTONE_PRIVATE_RPC_URL'];
7685

7786
if (liveRpcUrl) {

0 commit comments

Comments
 (0)