Skip to content

Commit d1cc38c

Browse files
ryanioclaude
andcommitted
test: remove chain exclusions from getCollections test
- Remove Abstract, ApeChain, Blast, and Zora exclusions - Keep only Solana excluded (no NFT collections) - Test now runs for all chains except Solana 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent b1657a9 commit d1cc38c

File tree

1 file changed

+2
-11
lines changed

1 file changed

+2
-11
lines changed

test/integration/getCollection.spec.ts

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -69,19 +69,10 @@ 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 Solana (no NFT collections)
7373
const chains = Object.values(Chain).filter(
74-
(chain) =>
75-
chain !== Chain.Abstract &&
76-
chain !== Chain.ApeChain &&
77-
chain !== Chain.Blast &&
78-
chain !== Chain.Zora &&
79-
chain !== Chain.Solana,
74+
(chain) => chain !== Chain.Solana,
8075
);
81-
console.log(
82-
"Skipping Abstract, ApeChain, Blast, Zora due to internal server errors - skipping should be removed when resolved",
83-
);
84-
8576
const sdk = getSdkForChain(Chain.Mainnet);
8677

8778
await processInBatches(chains, 3, async (chain) => {

0 commit comments

Comments
 (0)