jest-runner.d.ts 459 B

123456789
  1. import type * as d from '@stencil/core/internal';
  2. export declare function runJest(config: d.Config, env: d.E2EProcessEnv): Promise<boolean>;
  3. /**
  4. * Creates a Stencil test runner
  5. * @returns the test runner
  6. */
  7. export declare function createTestRunner(): any;
  8. export declare function includeTestFile(testPath: string, env: d.E2EProcessEnv): boolean;
  9. export declare function getEmulateConfigs(testing: d.TestingConfig, flags: d.ConfigFlags): d.EmulateConfig[];