aboutsummaryrefslogtreecommitdiff
path: root/packages/integrations/mdx/test/mdx-script-style-raw.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'packages/integrations/mdx/test/mdx-script-style-raw.test.js')
-rw-r--r--packages/integrations/mdx/test/mdx-script-style-raw.test.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/integrations/mdx/test/mdx-script-style-raw.test.js b/packages/integrations/mdx/test/mdx-script-style-raw.test.js
index 5b276f043..dc4f337bf 100644
--- a/packages/integrations/mdx/test/mdx-script-style-raw.test.js
+++ b/packages/integrations/mdx/test/mdx-script-style-raw.test.js
@@ -34,14 +34,14 @@ describe('MDX script style raw', () => {
assert.equal(
scriptContent.includes("console.log('raw script')"),
true,
- 'script should not be html-escaped'
+ 'script should not be html-escaped',
);
const styleContent = document.getElementById('test-style').innerHTML;
assert.equal(
styleContent.includes('h1[id="script-style-raw"]'),
true,
- 'style should not be html-escaped'
+ 'style should not be html-escaped',
);
});
});
@@ -61,14 +61,14 @@ describe('MDX script style raw', () => {
assert.equal(
scriptContent.includes("console.log('raw script')"),
true,
- 'script should not be html-escaped'
+ 'script should not be html-escaped',
);
const styleContent = document.getElementById('test-style').innerHTML;
assert.equal(
styleContent.includes('h1[id="script-style-raw"]'),
true,
- 'style should not be html-escaped'
+ 'style should not be html-escaped',
);
});
});