fix(challenge-parser): add missing backtick in challenge parser fixture files (#64131)

Co-authored-by: Navadeep0007 <2400030007@kluniversity.in>
This commit is contained in:
gowtham1412-p
2025-11-28 04:24:55 +05:30
committed by GitHub
parent b51290d009
commit 8cbaf2b27d
13 changed files with 13 additions and 17 deletions

View File

@@ -78,4 +78,4 @@ body {
```js
var x = 'y';
``
```

View File

@@ -104,4 +104,4 @@ body {
```js
var x = 'y';
``
```

View File

@@ -70,4 +70,4 @@ body {
```js
var x = 'y';
``
```

View File

@@ -92,4 +92,4 @@ body {
```js
var x = 'y';
``
```

View File

@@ -93,4 +93,4 @@ body {
```js
var x = 'y';
``
```

View File

@@ -85,4 +85,4 @@ body {
```js
var x = 'y';
``
```

View File

@@ -80,4 +80,4 @@ body {
```js
var x = 'y';
``
```

View File

@@ -83,4 +83,4 @@ body {
```js
var x = 'y';
``
```

View File

@@ -101,4 +101,4 @@ body {
```js
var x = 'y';
``
```

View File

@@ -101,4 +101,4 @@ body {
```js
var x = 'y';
``
```

View File

@@ -409,8 +409,7 @@ exports[`challenge parser > should parse a simple md file 1`] = `
"tail": "",
},
{
"contents": "var x = 'y';
\`\`",
"contents": "var x = 'y';",
"ext": "js",
"head": "",
"id": "",
@@ -586,8 +585,7 @@ exports[`challenge parser > should parse gfm strikethrough and frontmatter 1`] =
"tail": "",
},
{
"contents": "var x = 'y';
\`\`",
"contents": "var x = 'y';",
"ext": "js",
"head": "",
"id": "",

View File

@@ -26,8 +26,7 @@ exports[`add solution plugin > should have an output to match the snapshot 1`] =
"tail": "",
},
{
"contents": "var x = 'y';
\`\`",
"contents": "var x = 'y';",
"ext": "js",
"head": "",
"id": "",

View File

@@ -79,5 +79,4 @@ body {
```js
var x = 'y';
``;
```