We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d15f0fb commit 199899bCopy full SHA for 199899b
1 file changed
packages/db/src/seed.test.ts
@@ -85,7 +85,13 @@ describe('seed', () => {
85
test('exports IMAGE_IDS', async () => {
86
const mod = await import('./seed.js')
87
expect(mod.IMAGE_IDS).toBeDefined()
88
- expect(Object.keys(mod.IMAGE_IDS)).toEqual(['ubuntu-22.04/base'])
+ expect(Object.keys(mod.IMAGE_IDS)).toEqual([
89
+ 'ubuntu-22.04/base',
90
+ 'ubuntu-22.04/node-22',
91
+ 'ubuntu-22.04/bun',
92
+ 'ubuntu-22.04/python-3.12',
93
+ 'ubuntu-22.04/go-1.22',
94
+ ])
95
})
96
97
test('exports DEV_NODE_ID', async () => {
0 commit comments