mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2025-12-25 02:14:11 -05:00
Co-authored-by: Huyen Nguyen <25715018+huyenltnguyen@users.noreply.github.com> Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>
33 lines
793 B
Plaintext
33 lines
793 B
Plaintext
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
|
|
|
|
exports[`add-video-question plugin > should match the video snapshot 1`] = `
|
|
{
|
|
"questions": [
|
|
{
|
|
"answers": [
|
|
{
|
|
"answer": "<p>Some inline <code>code</code></p>",
|
|
"audioId": null,
|
|
"feedback": "<p>That is not correct.</p>",
|
|
},
|
|
{
|
|
"answer": "<p>Some <em>italics</em></p>
|
|
<p>A second answer paragraph.</p>",
|
|
"audioId": null,
|
|
"feedback": null,
|
|
},
|
|
{
|
|
"answer": "<p><code> code in </code> code tags</p>",
|
|
"audioId": null,
|
|
"feedback": null,
|
|
},
|
|
],
|
|
"solution": 3,
|
|
"text": "<p>Question line 1</p>
|
|
<pre><code class="language-js"> var x = 'y';
|
|
</code></pre>",
|
|
},
|
|
],
|
|
}
|
|
`;
|