Skip to content

Commit 0c46414

Browse files
committed
fix self-ref type
1 parent d6d5c68 commit 0c46414

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

apps/webapp/test/slackErrorAlerts.test.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
import { describe, test, expect, beforeAll, afterAll } from "vitest";
22
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";
35

4-
let DeliverErrorGroupAlertService: typeof DeliverErrorGroupAlertService;
6+
let DeliverErrorGroupAlertService: typeof DeliverErrorGroupAlertModule.DeliverErrorGroupAlertService;
57
let prisma: PrismaClient;
6-
let getSecretStore: typeof getSecretStore;
8+
let getSecretStore: typeof SecretStoreModule.getSecretStore;
79

810
type ErrorAlertPayload = {
911
channelId: string;

0 commit comments

Comments
 (0)