UNPKG

@storm-software/testing-tools

Version:

A package containing various testing tools used by Storm workspaces to drive unit and e2e testing.

11 lines (8 loc) 263 B
import { Config } from 'jest'; /** * Config for Jest unit tests * * https://jestjs.io/docs/configuration#projects-arraystring--projectconfig */ declare function declareWorkspace(config?: Partial<Config>): () => Promise<Config>; export { declareWorkspace };