mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-01-06 06:01:31 -05:00
28 lines
645 B
Plaintext
28 lines
645 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`add-video-question plugin should match the video snapshot 1`] = `
|
|
{
|
|
"question": {
|
|
"answers": [
|
|
{
|
|
"answer": "<p>Some inline <code>code</code></p>",
|
|
"feedback": "<p>That is not correct.</p>",
|
|
},
|
|
{
|
|
"answer": "<p>Some <em>italics</em></p>
|
|
<p>A second answer paragraph.</p>",
|
|
"feedback": null,
|
|
},
|
|
{
|
|
"answer": "<p><code> code in </code> code tags</p>",
|
|
"feedback": null,
|
|
},
|
|
],
|
|
"solution": 3,
|
|
"text": "<p>Question line 1</p>
|
|
<pre><code class="language-js"> var x = 'y';
|
|
</code></pre>",
|
|
},
|
|
}
|
|
`;
|