Skip to content

Commit 9e1c896

Browse files
ryanioclaude
andcommitted
test: exclude Shape chain from getCollections test
- Add Chain.Shape to excluded chains list - Shape chain experiencing internal server errors like other excluded chains 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent b1657a9 commit 9e1c896

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

test/integration/getCollection.spec.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,17 +69,18 @@ suite("SDK: getCollection", () => {
6969
});
7070

7171
test("Get Collections for all chains", async () => {
72-
// Excluding Abstract, ApeChain, Blast, Zora (Internal Server Error) and Solana (no NFT collections)
72+
// Excluding Abstract, ApeChain, Blast, Shape, Zora (Internal Server Error) and Solana (no NFT collections)
7373
const chains = Object.values(Chain).filter(
7474
(chain) =>
7575
chain !== Chain.Abstract &&
7676
chain !== Chain.ApeChain &&
7777
chain !== Chain.Blast &&
78+
chain !== Chain.Shape &&
7879
chain !== Chain.Zora &&
7980
chain !== Chain.Solana,
8081
);
8182
console.log(
82-
"Skipping Abstract, ApeChain, Blast, Zora due to internal server errors - skipping should be removed when resolved",
83+
"Skipping Abstract, ApeChain, Blast, Shape, Zora due to internal server errors - skipping should be removed when resolved",
8384
);
8485

8586
const sdk = getSdkForChain(Chain.Mainnet);

0 commit comments

Comments
 (0)