Skip to content

Commit

Permalink
fix: tests timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
Evgeniya Bashieva committed Feb 3, 2025
1 parent 1b2a511 commit 70ad814
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion __tests__/e2e/transfer-sol.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import { itNeonTokenMint, itSolanaTokenSPL } from './erc20';
import { JsonRpcProvider, Wallet } from "ethers";

require('dotenv').config({ path: `./__tests__/env/.env` });
jest.setTimeout(12e4);
jest.setTimeout(24e4);

const CHAIN_ID = Number(process.env.CHAIN_ID);
const CHAIN_ID_SOL = Number(process.env.CHAIN_ID_SOL);
Expand Down
2 changes: 1 addition & 1 deletion __tests__/tools/utils/faucet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const FAUCET_URL = process.env.FAUSET_URL!;
export class FaucetDropper {
public tokens: SPLToken[] = [];
public supportedTokens: SPLToken[] = [];
private _tokens: string[] = ['USDT', 'USDC'];
private _tokens: string[] = [/*'USDT',*/ 'USDC'];
private chainId: ChainId['id'];

constructor(chainId: ChainId['id']) {
Expand Down

0 comments on commit 70ad814

Please sign in to comment.