(slug: string)
| 162 | }; |
| 163 | |
| 164 | const deleteSource = (slug: string): Effect.Effect<void> => |
| 165 | Effect.promise(() => |
| 166 | expectGuestRequest(`/api/apps/sources/${slug}`, { method: "DELETE" }).then(() => undefined), |
| 167 | ).pipe(Effect.ignore); |
| 168 | |
| 169 | const syncAndInvoke = (input: { |
| 170 | readonly slug: string; |
no test coverage detected