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 7a5e8f2ec..6e36ba61d 100644
--- a/packages/astro/test/static-build-page-url-format.test.js
+++ b/packages/astro/test/static-build-page-url-format.test.js
@@ -23,12 +23,12 @@ describe("Static build - pageUrlFormat: 'file'", () => {
});
it('Builds pages in root', async () => {
- const html = await fixture.readFile('/subpath/one.html');
+ const html = await fixture.readFile('/one.html');
expect(html).to.be.a('string');
});
it('Builds pages in subfolders', async () => {
- const html = await fixture.readFile('/subpath/sub/page.html');
+ const html = await fixture.readFile('/sub/page.html');
expect(html).to.be.a('string');
});
});