Files
freeCodeCamp/e2e/fixtures/quiz-audio-fixture.json

25 lines
541 B
JSON

[
{
"questions": [
{
"distractors": ["<p>Wrong 1</p>", "<p>Wrong 2</p>", "<p>Wrong 3</p>"],
"text": "<p>What does the audio say?</p>",
"answer": "<p>Correct answer</p>",
"audioData": {
"audio": {
"filename": "test-audio.mp3",
"startTimestamp": 0,
"finishTimestamp": 2
},
"transcript": [
{
"character": "Speaker",
"text": "Hello world"
}
]
}
}
]
}
]