summaryrefslogtreecommitdiff
path: root/packages/astro/test/static-build-page-url-format.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'packages/astro/test/static-build-page-url-format.test.js')
-rw-r--r--packages/astro/test/static-build-page-url-format.test.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/astro/test/static-build-page-url-format.test.js b/packages/astro/test/static-build-page-url-format.test.js
index 4a21419cc..941a7e571 100644
--- a/packages/astro/test/static-build-page-url-format.test.js
+++ b/packages/astro/test/static-build-page-url-format.test.js
@@ -6,12 +6,12 @@ function addLeadingSlash(path) {
return path.startsWith('/') ? path : '/' + path;
}
-describe("Static build - pageUrlFormat: 'file'", () => {
+describe("Static build - format: 'file'", () => {
let fixture;
before(async () => {
fixture = await loadFixture({
- projectRoot: './fixtures/static-build-page-url-format/',
+ root: './fixtures/static-build-page-url-format/',
});
await fixture.build();
});