Skip to content

Commit

Permalink
silence tests only
Browse files Browse the repository at this point in the history
Signed-off-by: bennett <[email protected]>
  • Loading branch information
bmzig committed Dec 31, 2024
1 parent 7a9403d commit 787b917
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@across-protocol/contracts",
"version": "3.0.20",
"version": "3.0.19",
"author": "UMA Team",
"license": "AGPL-3.0-only",
"repository": {
Expand Down
2 changes: 2 additions & 0 deletions test/evm/hardhat/Setup.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import { hre } from "../../../utils/utils.hre.ts";

Check failure on line 1 in test/evm/hardhat/Setup.ts

View workflow job for this annotation

GitHub Actions / Forge (20)

An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.

Check failure on line 1 in test/evm/hardhat/Setup.ts

View workflow job for this annotation

GitHub Actions / Lint (20)

An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.

Check failure on line 1 in test/evm/hardhat/Setup.ts

View workflow job for this annotation

GitHub Actions / Test (20)

An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.

Check failure on line 1 in test/evm/hardhat/Setup.ts

View workflow job for this annotation

GitHub Actions / Forge (20)

An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.

Check failure on line 1 in test/evm/hardhat/Setup.ts

View workflow job for this annotation

GitHub Actions / Lint (20)

An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.

Check failure on line 1 in test/evm/hardhat/Setup.ts

View workflow job for this annotation

GitHub Actions / Test (20)

An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.
hre.upgrades.silenceWarnings("unsafeAllowDelegatecall");

Check failure on line 2 in test/evm/hardhat/Setup.ts

View workflow job for this annotation

GitHub Actions / Forge (20)

Expected 0 arguments, but got 1.

Check failure on line 2 in test/evm/hardhat/Setup.ts

View workflow job for this annotation

GitHub Actions / Lint (20)

Expected 0 arguments, but got 1.

Check failure on line 2 in test/evm/hardhat/Setup.ts

View workflow job for this annotation

GitHub Actions / Test (20)

Expected 0 arguments, but got 1.

Check failure on line 2 in test/evm/hardhat/Setup.ts

View workflow job for this annotation

GitHub Actions / Forge (20)

Expected 0 arguments, but got 1.

Check failure on line 2 in test/evm/hardhat/Setup.ts

View workflow job for this annotation

GitHub Actions / Lint (20)

Expected 0 arguments, but got 1.

Check failure on line 2 in test/evm/hardhat/Setup.ts

View workflow job for this annotation

GitHub Actions / Test (20)

Expected 0 arguments, but got 1.
2 changes: 0 additions & 2 deletions test/evm/hardhat/fixtures/HubPool.Fixture.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ export const hubPoolFixture = hre.deployments.createFixture(async ({ ethers }) =
});

export async function deployHubPool(ethers: any, spokePoolName = "MockSpokePool") {
// Suppress `unsafeDelegatecall` warnings from the spoke pool.
hre.upgrades.silenceWarnings();
const [signer, crossChainAdmin] = await ethers.getSigners();

// This fixture is dependent on the UMA ecosystem fixture. Run it first and grab the output. This is used in the
Expand Down
2 changes: 0 additions & 2 deletions test/evm/hardhat/fixtures/SpokePool.Fixture.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@ export async function deploySpokePool(
destErc20: Contract;
erc1271: Contract;
}> {
// Silence the `unsafeDelegatecall` warning.
hre.upgrades.silenceWarnings();
const [deployerWallet, crossChainAdmin, hubPool] = await ethers.getSigners();

// Create tokens:
Expand Down

0 comments on commit 787b917

Please sign in to comment.