We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c44d67 commit eb01230Copy full SHA for eb01230
1 file changed
packages/server/api/test/integration/cloud/project/project.service.test.ts
@@ -1,4 +1,4 @@
1
-import { encryptUtils, QueueMode } from '@openops/server-shared';
+import { encryptUtils } from '@openops/server-shared';
2
import { openOpsId } from '@openops/shared';
3
import { databaseConnection } from '../../../../src/app/database/database-connection';
4
import { projectService } from '../../../../src/app/project/project-service';
@@ -8,7 +8,7 @@ import {
8
} from '../../../helpers/mocks';
9
10
beforeAll(async () => {
11
- await encryptUtils.loadEncryptionKey(QueueMode.MEMORY);
+ encryptUtils.loadEncryptionKey();
12
await databaseConnection().initialize();
13
});
14
0 commit comments