Skip to content

Commit 67c91e7

Browse files
committed
fmt
1 parent a651a0c commit 67c91e7

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

local-tests/health/index.ts

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,19 @@ async function runHealthCheck() {
99
console.log('🔍 Environment Variables:');
1010
console.log(' NETWORK:', process.env.NETWORK);
1111
console.log(' LIT_STATUS_BACKEND_URL:', process.env.LIT_STATUS_BACKEND_URL);
12-
console.log(' LIT_STATUS_WRITE_KEY:', process.env.LIT_STATUS_WRITE_KEY ? '[SET]' : '[NOT SET]');
13-
12+
console.log(
13+
' LIT_STATUS_WRITE_KEY:',
14+
process.env.LIT_STATUS_WRITE_KEY ? '[SET]' : '[NOT SET]'
15+
);
16+
1417
if (!NETWORK) {
1518
throw new Error('❌ NETWORK is not set');
1619
}
17-
20+
1821
if (!process.env.LIT_STATUS_BACKEND_URL) {
1922
throw new Error('❌ LIT_STATUS_BACKEND_URL is not set');
2023
}
21-
24+
2225
if (!process.env.LIT_STATUS_WRITE_KEY) {
2326
throw new Error('❌ LIT_STATUS_WRITE_KEY is not set');
2427
}

local-tests/setup/tinny-environment.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,9 @@ export class TinnyEnvironment {
145145
'[𐬺🧪 Tinny Environment𐬺] Done configuring environment current config: ',
146146
{
147147
...this.processEnvs,
148-
PRIVATE_KEYS: this.processEnvs.PRIVATE_KEYS.map((_, index) => `[PRIVATE_KEY_${index}]`),
148+
PRIVATE_KEYS: this.processEnvs.PRIVATE_KEYS.map(
149+
(_, index) => `[PRIVATE_KEY_${index}]`
150+
),
149151
}
150152
);
151153
}

0 commit comments

Comments
 (0)