Interface TestPeggyOptions

interface TestPeggyOptions {
    noDelete?: boolean;
    noGenerate?: boolean;
    noMap?: boolean;
    noOriginal?: boolean;
}

Properties

noDelete?: boolean

Do not delete the generated file.

noGenerate?: boolean

Do not generate a file, only run tests on the original.

noMap?: boolean

Do not add a sourcemap to the generated file. Defaults to true if peg$debugger is set on any start, otherwise false.

noOriginal?: boolean

Do not run tests on the original code, only on the generated code.