(icon: string, message: string)
| 920 | } |
| 921 | |
| 922 | function log(icon: string, message: string) { |
| 923 | console.log(` ${icon} ${message}`) |
| 924 | } |
| 925 | |
| 926 | async function resetDemoOrg() { |
| 927 | const existing = await db.select().from(OrganizationTable).where(eq(OrganizationTable.slug, DEMO_ORG_SLUG)).limit(1) |
no test coverage detected