Files
freeCodeCamp/tools/challenge-parser/parser/__fixtures__/with-after-all-hook.md
2025-09-11 10:46:57 -05:00

398 B

--description--

Paragraph 1

code example

--after-all--

// after all code
function teardown() {
  return 'cleaned up';
}
teardown();

--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);
}