Skip to content

Commit

Permalink
fix(assignments-service): embedding.service.spec.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
Clashsoft committed Sep 14, 2023
1 parent 07bb574 commit b9f41f5
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import {
import {ElasticsearchService} from "@nestjs/elasticsearch";
import {SearchService} from "../search/search.service";
import {OpenAIService} from "./openai.service";
import {SolutionService} from "../solution/solution.service";

describe('EmbeddingService', () => {
let service: EmbeddingService;
Expand All @@ -19,6 +20,7 @@ describe('EmbeddingService', () => {
EmbeddingService,
SearchService,
OpenAIService,
{provide: SolutionService, useValue: null},
{provide: ElasticsearchService, useValue: null},
],
}).compile();
Expand Down

0 comments on commit b9f41f5

Please sign in to comment.