MCPcopy
hub / github.com/rollup/rollup / TestConfigBase

Interface TestConfigBase

test/types.d.ts:4–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2import type { RollupBuild, RollupError, RollupLog, RollupOptions } from '../src/rollup/types';
3
4export interface TestConfigBase {
5 /**
6 * Description of the test. Determines the name of the test in the test
7 * runner.
8 */
9 description: string;
10 /**
11 * Only run this test if the major Node version is high enough.
12 */
13 minNodeVersion?: number;
14 /**
15 * Only run this test on Windows.
16 */
17 onlyWindows?: boolean;
18 /**
19 * Skip this test.
20 */
21 skip?: boolean;
22 /**
23 * Do not run this test on Windows.
24 */
25 skipIfWindows?: boolean;
26 /**
27 * Only run this test. Should never be committed.
28 */
29 solo?: boolean;
30}
31
32export interface TestConfigBrowser extends TestConfigBase {
33 /**

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…