HEX
Server: Apache
System: Linux pdx1-shared-a1-38 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mmickelson (3396398)
PHP: 8.1.31
Disabled: NONE
Upload Files
File: //usr/share/nodejs/fast-glob/out/tests/smoke/smoke.d.ts
import * as glob from 'glob';
import { Options } from '../../settings';
import { Pattern } from '../../types';
export declare type SmokeTest = {
    pattern: Pattern;
    ignore?: Pattern;
    cwd?: string;
    globOptions?: glob.IOptions;
    fgOptions?: Options;
    /**
     * Allow to run only one test case with debug information.
     */
    debug?: boolean;
    /**
     * Mark test case as broken. This is requires a issue to repair.
     */
    broken?: boolean;
    issue?: number | number[];
    /**
     * Mark test case as correct. This is requires a reason why is true.
     */
    correct?: boolean;
    reason?: string;
    /**
     * The ability to conditionally run the test.
     */
    condition?: () => boolean;
};
export declare function suite(name: string, tests: Array<SmokeTest | SmokeTest[]>): void;