Skip to content

Commit

Permalink
ci: temporarily skip a flaky test (#3940)
Browse files Browse the repository at this point in the history
temporarily skipping this test that occasionally flakes until we can fix
it for good

---------

Signed-off-by: Paul Balaji <[email protected]>
  • Loading branch information
paulbalaji authored Jun 11, 2024
1 parent 5a31e7b commit 29f3685
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion typescript/sdk/src/ism/metadata/builder.hardhat-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 29f3685

Please sign in to comment.