@moonsong-labs/moonwall-cli
Version:
Testing framework for the Moon family of projects
20 lines (16 loc) • 638 B
TypeScript
import { ITestSuiteType } from '../types/runner.js';
export { GenericContext } from '../types/runner.js';
import '@polkadot/api';
import 'ethers';
import 'web3';
import '@polkadot/api/types/index.js';
import './contextHelpers.js';
import '@polkadot/api/types';
import '@polkadot/types/extrinsic';
import '@polkadot/types/interfaces';
import '@polkadot/types/types';
import 'debug';
import '../types/config.js';
declare function describeSuite({ id, title, testCases, foundationMethods, minRtVersion, chainType, notChainType, }: ITestSuiteType): void;
type TestCaseModifier = "only" | "skip";
export { TestCaseModifier, describeSuite };