fix(tests): assert step tests fail on their initial seed contents (#68842)

This commit is contained in:
majestic-owl448
2026-07-16 11:08:12 +02:00
committed by GitHub
parent e517262a7b
commit cf37189b13
+4 -1
View File
@@ -279,7 +279,10 @@ async function populateTestsForLang({ lang, challenges, meta }) {
}
}
console.error = oldConsoleError;
expect(fails, 'Test suite should fail on the initial contents');
expect(
fails,
'Test suite should fail on the initial contents'
).toBe(true);
},
timePerTest * tests.length + 20000
);