We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdb33f1 commit 1fdce63Copy full SHA for 1fdce63
packages/faucet/src/faucet.spec.ts
@@ -7,10 +7,10 @@ import { Faucet } from "./faucet";
7
import { TokenConfiguration } from "./tokenmanager";
8
9
function pendingWithoutSimapp(): void {
10
- if (!process.env.SIMAPP47_ENABLED && !process.env.SIMAPP50_ENABLED) {
11
- pending("Set SIMAPP{47,50}_ENABLED to enabled Stargate node-based tests");
+ if (globalThis.process?.env.SIMAPP47_ENABLED || globalThis.process?.env.SIMAPP50_ENABLED)) {
12
return;
13
}
+ pending("Set SIMAPP{47,50}_ENABLED to enabled Stargate node-based tests");
14
15
16
const defaultTokenConfig: TokenConfiguration = {
0 commit comments