4d69dceaa7
* test: initial * test: update * test: lint * test: faucet asset checks * test: lint * test: tweaks * test: tweaks * test: lint * test: tweaks * test: lint * test: re-arrange into views * test: lint
30 lines
1.0 KiB
TypeScript
30 lines
1.0 KiB
TypeScript
import { addGetTestIdcommand } from './lib/commands/get-by-test-id';
|
|
import {
|
|
addMockGQLCommand,
|
|
addMockGQLSubscriptionCommand,
|
|
} from './lib/commands/mock-gql';
|
|
import { addMockVegaWalletCommands } from './lib/commands/mock-vega-wallet';
|
|
import { addMockWeb3ProviderCommand } from './lib/commands/mock-web3-provider';
|
|
import { addSlackCommand } from './lib/commands/slack';
|
|
import { addHighlightLog } from './lib/commands/highlight-log';
|
|
import { addGetAssetInformation } from './lib/commands/get-asset-information';
|
|
import { addVegaWalletReceiveFaucetedAsset } from './lib/commands/vega-wallet-receive-fauceted-asset';
|
|
|
|
addGetTestIdcommand();
|
|
addSlackCommand();
|
|
addMockGQLCommand();
|
|
addMockGQLSubscriptionCommand();
|
|
addMockVegaWalletCommands();
|
|
addMockWeb3ProviderCommand();
|
|
addHighlightLog();
|
|
addVegaWalletReceiveFaucetedAsset();
|
|
addGetAssetInformation();
|
|
|
|
export * from './lib/graphql-test-utils';
|
|
export type { onMessage } from './lib/commands/mock-gql';
|
|
|
|
Cypress.on(
|
|
'uncaught:exception',
|
|
(err) => !err.message.includes('ResizeObserver loop limit exceeded')
|
|
);
|