Interface AutoTestRedactedQuizStepOutput

Add question blocks to this block that students need to answer in the Code Editor (redacted).

interface AutoTestRedactedQuizStepOutput {
    children: AutoTestRedactedTestStepOutput[];
    fileName: string;
    id: string;
    runSingleQuestions?: boolean;
}

Properties

The children of this wrapper step.

fileName: string

The name of the answers file students will edit in the Code Editor.

id: string

The id of this step.

runSingleQuestions?: boolean

Whether to allow running single questions at a time.