Skip to content

Commit

Permalink
fix: make SKIP_TENDERLY to be by default true
Browse files Browse the repository at this point in the history
  • Loading branch information
KanievskyiDanylo committed Oct 23, 2024
1 parent e390421 commit 40bdb53
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/dex/generic-rfq/generic-rfq-e2e.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@ const buildConfigForGenericRFQ = (): RFQConfig => {
};
};

const SKIP_TENDERLY = getEnv('GENERIC_RFQ_SKIP_TENDERLY', true) === 'true';
const SKIP_TENDERLY =
(process.env.GENERIC_RFQ_SKIP_TENDERLY ?? 'true') === 'true';
const dexKey = 'YOUR_NAME';

describe(`GenericRFQ ${dexKey} E2E`, () => {
Expand Down

0 comments on commit 40bdb53

Please sign in to comment.