@storm-software/testing-tools
Version:
A package containing various testing tools used by Storm workspaces to drive unit and e2e testing.
19 lines (16 loc) • 575 B
text/typescript
import { Config } from 'jest';
type DeclarePackageConfigOptions = Config & {
projectRoot: string;
isNode?: boolean;
displayName?: string;
};
/**
* Config for Jest unit tests
*
* @remarks Please see [the Jest documentation](https://jestjs.io/docs/configuration#projects-arraystring--projectconfig) for more information.
*
* @param options The options for the Jest configuration
* @returns The Jest configuration
*/
declare function declarePackage(options: DeclarePackageConfigOptions): Config;
export { type DeclarePackageConfigOptions, declarePackage };