Skip to content

Commit

Permalink
fix: update tests (#12586)
Browse files Browse the repository at this point in the history
Co-authored-by: matthewp <[email protected]>
  • Loading branch information
ematipico and matthewp authored Dec 2, 2024
1 parent 10c6b8d commit 3a76353
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 2 deletions.
7 changes: 7 additions & 0 deletions packages/astro/test/fixtures/astro-cookies/astro.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { defineConfig } from "astro/config";

export default defineConfig({
security: {
checkOrigin: false
}
})
7 changes: 7 additions & 0 deletions packages/astro/test/fixtures/redirects/astro.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { defineConfig } from "astro/config";

export default defineConfig({
security: {
checkOrigin: false
}
})
5 changes: 4 additions & 1 deletion packages/astro/test/fixtures/reroute/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,8 @@ import {defineConfig} from 'astro/config';

// https://astro.build/config
export default defineConfig({
site: "https://example.com"
site: "https://example.com",
security: {
checkOrigin: false
}
});
5 changes: 4 additions & 1 deletion packages/astro/test/fixtures/rewrite-server/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,8 @@ import {defineConfig} from 'astro/config';
// https://astro.build/config
export default defineConfig({
output: "server",
site: "https://example.com"
site: "https://example.com",
security: {
checkOrigin: false
}
});
7 changes: 7 additions & 0 deletions packages/astro/test/fixtures/ssr-error-pages/astro.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { defineConfig } from "astro/config";

export default defineConfig({
security: {
checkOrigin: false
}
})

0 comments on commit 3a76353

Please sign in to comment.