[ci] format
This commit is contained in:
parent
abcefe55cd
commit
980246f148
1 changed files with 7 additions and 7 deletions
|
@ -12,13 +12,13 @@ describe('Integrations can hook into the prerendering decision', () => {
|
|||
['astro:build:setup']({ pages, target }) {
|
||||
if (target !== 'client') return;
|
||||
// this page has `export const prerender = true`
|
||||
pages.get('src/pages/static.astro').route.prerender = false
|
||||
pages.get('src/pages/static.astro').route.prerender = false;
|
||||
|
||||
// this page does not
|
||||
pages.get('src/pages/not-prerendered.astro').route.prerender = true
|
||||
}
|
||||
}
|
||||
}
|
||||
pages.get('src/pages/not-prerendered.astro').route.prerender = true;
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
before(async () => {
|
||||
fixture = await loadFixture({
|
||||
|
|
Loading…
Reference in a new issue