Files
freeCodeCamp/tools/challenge-parser/parser/plugins/__snapshots__/add-tests.test.js.snap
2025-09-12 09:50:02 -07:00

24 lines
553 B
Plaintext

// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
exports[`add-tests plugin > should have an output to match the snapshot 1`] = `
{
"tests": [
{
"testString": "// test code",
"text": "<p>First hint</p>",
},
{
"testString": "// more test code",
"text": "<p>Second hint with <code>code</code></p>",
},
{
"testString": "// more test code
if(let x of xs) {
console.log(x);
}",
"text": "<p>Third <em>hint</em> with <code>code</code> and <code>inline code</code></p>",
},
],
}
`;