Skip to content

Commit

Permalink
fix: tests that broke based on last update to timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
newbreedofgeek committed Nov 8, 2024
1 parent 8db64c2 commit aca7fd2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/environment.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ describe('testing environment market', () => {
expect(datanft.chainID).toStrictEqual('D');
expect(datanft.networkProvider).toStrictEqual(
new ApiNetworkProvider('https://devnet-api.multiversx.com', {
timeout: 10000
timeout: 20000
})
);
});
Expand All @@ -19,7 +19,7 @@ describe('testing environment market', () => {
expect(datanft.chainID).toStrictEqual('1');
expect(datanft.networkProvider).toStrictEqual(
new ApiNetworkProvider('https://api.multiversx.com', {
timeout: 10000
timeout: 20000
})
);
});
Expand Down Expand Up @@ -54,7 +54,7 @@ describe('testing environment minter', () => {
expect(datanft.chainID).toStrictEqual('D');
expect(datanft.networkProvider).toStrictEqual(
new ApiNetworkProvider('https://devnet-api.multiversx.com', {
timeout: 10000
timeout: 20000
})
);
});
Expand All @@ -65,7 +65,7 @@ describe('testing environment minter', () => {
expect(datanft.chainID).toStrictEqual('1');
expect(datanft.networkProvider).toStrictEqual(
new ApiNetworkProvider('https://api.multiversx.com', {
timeout: 10000
timeout: 20000
})
);
});
Expand Down

0 comments on commit aca7fd2

Please sign in to comment.