Skip to content

Commit

Permalink
Move astro-basic test to use static build
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewp committed Feb 28, 2022
1 parent 6bebf78 commit 80c810a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion packages/astro/src/core/routing/manifest/create.ts
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ export function createRouteManifest({ config, cwd }: { config: AstroConfig; cwd?
basename,
ext,
parts,
file: slash(file),
file: file.replace(/\\/g, '/'),
isDir,
isIndex,
isPage,
Expand Down
1 change: 0 additions & 1 deletion packages/astro/test/astro-basic.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ describe('Astro basics', () => {
before(async () => {
fixture = await loadFixture({
projectRoot: './fixtures/astro-basic/',
buildOptions: { legacyBuild: true }
});
await fixture.build();
previewServer = await fixture.preview();
Expand Down

0 comments on commit 80c810a

Please sign in to comment.