diff --git a/src/test/playwright/e2e/exam/ExamAssessment.spec.ts b/src/test/playwright/e2e/exam/ExamAssessment.spec.ts index 3bfee439d546..dcfb886a29ca 100644 --- a/src/test/playwright/e2e/exam/ExamAssessment.spec.ts +++ b/src/test/playwright/e2e/exam/ExamAssessment.spec.ts @@ -222,6 +222,12 @@ test.describe('Exam grading', () => { }); }); +test.describe('This test should fail', () => { + test('Check exam statistics', () => { + expect(true).toBe(false); + }); +}); + test.describe('Exam statistics', () => { let exercise: Exercise; const students = [studentOne, studentTwo, studentThree, studentFour];