summaryrefslogtreecommitdiff
path: root/packages/integrations/markdoc/test
diff options
context:
space:
mode:
Diffstat (limited to 'packages/integrations/markdoc/test')
-rw-r--r--packages/integrations/markdoc/test/fixtures/render-with-components/package.json2
-rw-r--r--packages/integrations/markdoc/test/render.test.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/packages/integrations/markdoc/test/fixtures/render-with-components/package.json b/packages/integrations/markdoc/test/fixtures/render-with-components/package.json
index f14c97f0f..784b6c727 100644
--- a/packages/integrations/markdoc/test/fixtures/render-with-components/package.json
+++ b/packages/integrations/markdoc/test/fixtures/render-with-components/package.json
@@ -7,6 +7,6 @@
"astro": "workspace:*"
},
"devDependencies": {
- "shiki": "^0.11.1"
+ "shiki": "^0.14.1"
}
}
diff --git a/packages/integrations/markdoc/test/render.test.js b/packages/integrations/markdoc/test/render.test.js
index 48d13a759..86ffcb707 100644
--- a/packages/integrations/markdoc/test/render.test.js
+++ b/packages/integrations/markdoc/test/render.test.js
@@ -122,7 +122,7 @@ function renderComponentsChecks(html) {
// Renders Astro Code component
const pre = document.querySelector('pre');
expect(pre).to.not.be.null;
- expect(pre.className).to.equal('astro-code');
+ expect(pre.className).to.equal('astro-code github-dark');
}
/** @param {string} html */