freeCodeCamp/tools/challenge-parser/parser/plugins/__snapshots__/add-solution.test.js.snap
gowtham1412-p 8cbaf2b27d
fix(challenge-parser): add missing backtick in challenge parser fixture files (#64131)
Co-authored-by: Navadeep0007 <2400030007@kluniversity.in>
2025-11-27 23:54:55 +01:00

40 lines
710 B
Plaintext

// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
exports[`add solution plugin > should have an output to match the snapshot 1`] = `
{
"solutions": [
[
{
"contents": "<html>
<body>
</body>
</html>",
"ext": "html",
"head": "",
"id": "html-key",
"name": "index",
"tail": "",
},
{
"contents": "body {
background: white;
}",
"ext": "css",
"head": "",
"id": "",
"name": "styles",
"tail": "",
},
{
"contents": "var x = 'y';",
"ext": "js",
"head": "",
"id": "",
"name": "script",
"tail": "",
},
],
],
}
`;