| 2 | import type { RollupBuild, RollupError, RollupLog, RollupOptions } from '../src/rollup/types'; |
| 3 | |
| 4 | export 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 | |
| 32 | export interface TestConfigBrowser extends TestConfigBase { |
| 33 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…