mirror of
https://github.com/withastro/astro.git
synced 2025-01-20 22:12:38 -05:00
fix: test fixture paths
This commit is contained in:
parent
395a8a1400
commit
05e1005c0b
2 changed files with 5 additions and 5 deletions
|
@ -1,5 +1,5 @@
|
|||
import { defineConfig } from 'astro/config';
|
||||
import { db, field } from '@astro/db';
|
||||
import db, { field } from '@astrojs/db';
|
||||
|
||||
// https://astro.build/config
|
||||
export default defineConfig({
|
||||
|
|
8
packages/db/test/fixtures/basics/db.seed.ts
vendored
8
packages/db/test/fixtures/basics/db.seed.ts
vendored
|
@ -5,16 +5,16 @@ const authors: Array<typeof Author.$inferInsert> = [
|
|||
name: 'Ben',
|
||||
},
|
||||
{
|
||||
title: 'Nate',
|
||||
name: 'Nate',
|
||||
},
|
||||
{
|
||||
title: 'Erika',
|
||||
name: 'Erika',
|
||||
},
|
||||
{
|
||||
title: 'Bjorn',
|
||||
name: 'Bjorn',
|
||||
},
|
||||
{
|
||||
title: 'Sarah',
|
||||
name: 'Sarah',
|
||||
},
|
||||
];
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue