diff options
author | 2024-09-07 01:07:09 +0200 | |
---|---|---|
committer | 2024-09-07 01:07:09 +0200 | |
commit | 50ca656dbad6dbb3955b83d9f4dcf4795e98823a (patch) | |
tree | 928eb296b12e5f62025afd922f99a2aec0b1a1b2 /packages/db/test | |
parent | 5b4e3abbb152146b71c1af05d33c96211000b2a6 (diff) | |
download | astro-50ca656dbad6dbb3955b83d9f4dcf4795e98823a.tar.gz astro-50ca656dbad6dbb3955b83d9f4dcf4795e98823a.tar.zst astro-50ca656dbad6dbb3955b83d9f4dcf4795e98823a.zip |
Merge output: hybrid and output: static (#11824)
* feat: merge hybrid and static
* fix: linting
* fix: get a bunch of tests passing
* fix: make forceServerOutput optional
* fix: more tests passing
* fix: http2 test
* fix: CCC
* fix: get unit tests passing
* fix: lint
* fix: vercel
* fix: build
* fix: build
* fix: db tests
* fix: get all normal tests passing
* fix: e2e tests
* refactor: cleanup code
* fix: more tests
* fix: windows
* fix: apply feedback
* perf: do in parallel
* fix: tests
* fix: tests, for real
* fix: make server islands tests server-rendered
* fix: apply feedback
* nit: remove unnecessary file
* fix: test remove test that abuse prerender logic
* fix: ensure image endpoint is there on dev reload
Diffstat (limited to 'packages/db/test')
-rw-r--r-- | packages/db/test/local-prod.test.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/db/test/local-prod.test.js b/packages/db/test/local-prod.test.js index 6513aeb08..9bd56dad0 100644 --- a/packages/db/test/local-prod.test.js +++ b/packages/db/test/local-prod.test.js @@ -71,7 +71,7 @@ describe('astro:db local database', () => { it('should throw during the build for hybrid output', async () => { let fixture2 = await loadFixture({ root: new URL('./fixtures/local-prod/', import.meta.url), - output: 'hybrid', + output: 'static', adapter: testAdapter(), }); |