Commit ee509899 authored by Jakob Moser's avatar Jakob Moser
Browse files

Make clear() async

parent 42b679e3
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -171,8 +171,8 @@ class ExerciseExecutionContext {
    /**
     * Clear the terminal. Shorthand for prepareWith(null, true)
     */
    clear() {
        this.prepareWith(null, true)
    async clear() {
        await this.prepareWith(null, true)
    }

    /**