We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6d5c68 commit 0c46414Copy full SHA for 0c46414
1 file changed
apps/webapp/test/slackErrorAlerts.test.ts
@@ -1,9 +1,11 @@
1
import { describe, test, expect, beforeAll, afterAll } from "vitest";
2
import type { PrismaClient } from "@trigger.dev/database";
3
+import type * as DeliverErrorGroupAlertModule from "../app/v3/services/alerts/deliverErrorGroupAlert.server.js";
4
+import type * as SecretStoreModule from "../app/services/secrets/secretStore.server.js";
5
-let DeliverErrorGroupAlertService: typeof DeliverErrorGroupAlertService;
6
+let DeliverErrorGroupAlertService: typeof DeliverErrorGroupAlertModule.DeliverErrorGroupAlertService;
7
let prisma: PrismaClient;
-let getSecretStore: typeof getSecretStore;
8
+let getSecretStore: typeof SecretStoreModule.getSecretStore;
9
10
type ErrorAlertPayload = {
11
channelId: string;
0 commit comments