Files
freeCodeCamp/tools/challenge-parser/parser/__fixtures__/with-after-each-hook.md
Oliver Eyton-Williams 2a7b220a4f feat: support beforeEach and afterEach (#60921)
Co-authored-by: Shaun Hamilton <shauhami020@gmail.com>
2025-07-07 10:46:09 +00:00

398 B

--description--

Paragraph 1

code example

--after-each--

// after each code
function cleanup() {
  return 'cleaned up';
}
cleanup();

--hints--

First hint

// test code

Second hint with code

// more test code

Third hint with code and inline code

// more test code
if(let x of xs) {
  console.log(x);
}