Skip to content

Commit 9fcf1b8

Browse files
authored
skip smart wallet tests without TW_SECRET_KEY (#6403)
1 parent 33ddf56 commit 9fcf1b8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/thirdweb/src/wallets/smart/smart-wallet-integration-v07.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ const contract = getContract({
4949
address: "0xe2cb0eb5147b42095c2FfA6F7ec953bb0bE347D8",
5050
});
5151

52-
describe.sequential(
52+
describe.runIf(process.env.TW_SECRET_KEY).sequential(
5353
"SmartWallet 0.7 core tests",
5454
{
5555
timeout: 240_000,

packages/thirdweb/src/wallets/smart/smart-wallet-modular.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const client = TEST_CLIENT;
2828
const DEFAULT_FACTORY_ADDRESS = "0xB1846E893CA01c5Dcdaa40371C1e13f2e0Df5717";
2929
const DEFAULT_VALIDATOR_ADDRESS = "0x7D3631d823e0De311DC86f580946EeF2eEC81fba";
3030

31-
describe.sequential(
31+
describe.runIf(process.env.TW_SECRET_KEY).sequential(
3232
"SmartWallet modular tests",
3333
{
3434
retry: 0,

0 commit comments

Comments
 (0)