Skip to content

Commit

Permalink
even more
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewp committed Nov 29, 2023
1 parent ba3e743 commit 1f328b3
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
7 changes: 6 additions & 1 deletion packages/astro/e2e/astro-envs.test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
import { expect } from '@playwright/test';
import { testFactory } from './test-utils.js';

const test = testFactory({ root: './fixtures/astro-envs/' });
const test = testFactory({
root: './fixtures/astro-envs/',
devOverlay: {
enabled: false,
}
});

let devServer;

Expand Down
3 changes: 3 additions & 0 deletions packages/astro/e2e/css.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ import { testFactory } from './test-utils.js';

const test = testFactory({
root: './fixtures/css/',
devOverlay: {
enabled: false,
},
});

let devServer;
Expand Down
5 changes: 4 additions & 1 deletion packages/astro/e2e/fixtures/astro-component/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,8 @@ import preact from '@astrojs/preact'

// https://astro.build/config
export default defineConfig({
integrations: [preact()]
integrations: [preact()],
devOverlay: {
enabled: false,
}
});

0 comments on commit 1f328b3

Please sign in to comment.