Skip to content

Commit 509ff7d

Browse files
committed
test: remove Ankr from Ropsten send tests; the merge seems to have broke it.
1 parent 3790671 commit 509ff7d

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

packages/tests/src.ts/test-providers.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -858,7 +858,8 @@ testFunctions.push({
858858
timeout: 900, // 15 minutes
859859
networks: [ "ropsten" ], // Only test on Ropsten
860860
checkSkip: (provider: string, network: string, test: TestDescription) => {
861-
return false;
861+
// This isn't working right now on Ankr
862+
return (provider === "AnkrProvider");
862863
},
863864
execute: async (provider: ethers.providers.Provider) => {
864865
const gasPrice = (await provider.getGasPrice()).mul(10);
@@ -894,7 +895,8 @@ testFunctions.push({
894895
timeout: 900, // 15 minutes
895896
networks: [ "ropsten" ], // Only test on Ropsten
896897
checkSkip: (provider: string, network: string, test: TestDescription) => {
897-
return false;
898+
// This isn't working right now on Ankr
899+
return (provider === "AnkrProvider");
898900
},
899901
execute: async (provider: ethers.providers.Provider) => {
900902
const gasPrice = (await provider.getGasPrice()).mul(10);
@@ -937,7 +939,8 @@ testFunctions.push({
937939
networks: [ "ropsten" ], // Only test on Ropsten
938940
checkSkip: (provider: string, network: string, test: TestDescription) => {
939941
// These don't support EIP-1559 yet for sending
940-
return (provider === "AlchemyProvider");
942+
//return (provider === "AlchemyProvider" );
943+
return (provider === "AnkrProvider" );
941944
},
942945
execute: async (provider: ethers.providers.Provider) => {
943946
const wallet = fundWallet.connect(provider);

0 commit comments

Comments
 (0)