aboutsummaryrefslogtreecommitdiff
path: root/packages/integrations/node/test/prerender.test.js
diff options
context:
space:
mode:
authorGravatar Emanuele Stoppa <my.burning@gmail.com> 2025-02-07 14:59:13 +0000
committerGravatar GitHub <noreply@github.com> 2025-02-07 14:59:13 +0000
commit74c0bbeb390a68b3a345c96f62bc3e540e94ca27 (patch)
treec054354ba8170a746e037ffb171aec92c19b1ed0 /packages/integrations/node/test/prerender.test.js
parentc0be893bcff547fd50f05b62bd462237baa3c103 (diff)
downloadastro-74c0bbeb390a68b3a345c96f62bc3e540e94ca27.tar.gz
astro-74c0bbeb390a68b3a345c96f62bc3e540e94ca27.tar.zst
astro-74c0bbeb390a68b3a345c96f62bc3e540e94ca27.zip
chore: fix linting issues, integration tests (#13187)
* chore: fix linting issues * chore: update packages and directories * apply suggestions Co-authored-by: florian-lefebvre <69633530+florian-lefebvre@users.noreply.github.com>
Diffstat (limited to 'packages/integrations/node/test/prerender.test.js')
-rw-r--r--packages/integrations/node/test/prerender.test.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/packages/integrations/node/test/prerender.test.js b/packages/integrations/node/test/prerender.test.js
index 949358159..50229d466 100644
--- a/packages/integrations/node/test/prerender.test.js
+++ b/packages/integrations/node/test/prerender.test.js
@@ -225,7 +225,6 @@ describe('Prerendering', () => {
});
it('Can render SSR route', async () => {
- // biome-ignore lint/style/noUnusedTemplateLiteral: <explanation>
const res = await fixture.fetch(`/one`);
const html = await res.text();
const $ = cheerio.load(html);
@@ -235,7 +234,6 @@ describe('Prerendering', () => {
});
it('Can render prerendered route', async () => {
- // biome-ignore lint/style/noUnusedTemplateLiteral: <explanation>
const res = await fixture.fetch(`/two`);
const html = await res.text();
const $ = cheerio.load(html);