Interface AutoTestRunInNotebookStepInput

Create a code cell and run it as if it is part of the notebook. It will not be part of the notebook the student will use.

interface AutoTestRunInNotebookStepInput {
    cellContent: string;
    description?: AutoTestDescription;
    id?: string;
    insertMethod?: AutoTestRunInNotebookInsertMethod;
    name?: string;
    targetCellId?: string;
}

Properties

cellContent: string

The content of the cell.

description?: AutoTestDescription

The description of this step.

id?: string

The id of this step.

Method to insert a new cell into the new book.

name?: string

The name of this step.

targetCellId?: string

The id of the existing cell in template notebook to add grading cell for.