ci: temporarily skip a flaky test (#3940)

temporarily skipping this test that occasionally flakes until we can fix
it for good

---------

Signed-off-by: Paul Balaji <paul@hyperlane.xyz>
pull/3946/head
Paul Balaji 5 months ago committed by GitHub
parent 5a31e7b5d3
commit 29f368513f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 3
      typescript/sdk/src/ism/metadata/builder.hardhat-test.ts
  2. 1
      typescript/sdk/src/middleware/liquidity-layer/liquidity-layer.hardhat-test.ts
  3. 1
      typescript/sdk/src/middleware/query/queries.hardhat-test.ts

@ -114,7 +114,8 @@ describe('BaseMetadataBuilder', () => {
);
});
describe('#build', () => {
// eslint-disable-next-line jest/no-disabled-tests
describe.skip('#build', () => {
let origin: ChainName;
let destination: ChainName;
let context: MetadataContext;

@ -33,6 +33,7 @@ import {
PortalAdapterConfig,
} from './LiquidityLayerRouterDeployer.js';
// eslint-disable-next-line jest/no-disabled-tests
describe.skip('LiquidityLayerRouter', async () => {
const localChain = TestChainName.test1;
const remoteChain = TestChainName.test2;

@ -24,6 +24,7 @@ import { InterchainQueryChecker } from './InterchainQueryChecker.js';
import { InterchainQueryDeployer } from './InterchainQueryDeployer.js';
import { InterchainQueryFactories } from './contracts.js';
// eslint-disable-next-line jest/no-disabled-tests
describe.skip('InterchainQueryRouter', async () => {
const localChain = TestChainName.test1;
const remoteChain = TestChainName.test2;

Loading…
Cancel
Save