diff options
author | 2022-02-11 14:44:47 +0000 | |
---|---|---|
committer | 2022-02-11 14:44:47 +0000 | |
commit | 3c682f266850a87583a5eb09eb5dd80edf7e2e45 (patch) | |
tree | 89f211077425c8c9e4b191f4611382c25aec801a | |
parent | 82544e413406a62ecf3e408ca1aac5c8c15b7453 (diff) | |
download | astro-3c682f266850a87583a5eb09eb5dd80edf7e2e45.tar.gz astro-3c682f266850a87583a5eb09eb5dd80edf7e2e45.tar.zst astro-3c682f266850a87583a5eb09eb5dd80edf7e2e45.zip |
[ci] yarn format
-rw-r--r-- | packages/astro/test/static-build-page-url-format.test.js | 4 |
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 f082d2c0f..7a5e8f2ec 100644 --- a/packages/astro/test/static-build-page-url-format.test.js +++ b/packages/astro/test/static-build-page-url-format.test.js @@ -6,7 +6,7 @@ function addLeadingSlash(path) { return path.startsWith('/') ? path : '/' + path; } -describe('Static build - pageUrlFormat: \'file\'', () => { +describe("Static build - pageUrlFormat: 'file'", () => { let fixture; before(async () => { @@ -16,7 +16,7 @@ describe('Static build - pageUrlFormat: \'file\'', () => { buildOptions: { experimentalStaticBuild: true, site: 'http://example.com/subpath/', - pageUrlFormat: 'file' + pageUrlFormat: 'file', }, }); await fixture.build(); |