Publish DevRunbook source
Managed validation / full (push) Successful in 3m18s

This commit is contained in:
DevRunbook release export
2026-09-03 04:09:17 +02:00
commit cfd2804e27
928 changed files with 161642 additions and 0 deletions
@@ -0,0 +1,14 @@
import { describe, expect, it } from 'vitest'
import {
persistBuiltInPlaybooks,
type BuiltInImportTransaction,
} from './built-in-importer'
describe('PostgreSQL built-in importer', () => {
it('rejects an incomplete catalog before issuing database statements', async () => {
await expect(
persistBuiltInPlaybooks({} as BuiltInImportTransaction, []),
).rejects.toMatchObject({ code: 'catalog_import_incomplete' })
})
})