Skip to content

Commit

Permalink
Tests: fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
choxx committed Jan 25, 2023
1 parent faf0342 commit 488ccb4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/sms-adapter/cdac/cdac.service.spec.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
import { Test, TestingModule } from '@nestjs/testing';
import { CdacService } from './cdac.service';
import { ConfigModule } from '@nestjs/config';
import { HttpModule } from '@nestjs/axios';

describe('CdacService', () => {
let service: CdacService;

beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
imports: [ConfigModule, HttpModule],
providers: [CdacService],
}).compile();

Expand Down
3 changes: 3 additions & 0 deletions src/sms-adapter/uci/uci.service.spec.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
import { Test, TestingModule } from '@nestjs/testing';
import { UciService } from './uci.service';
import { ConfigModule } from '@nestjs/config';
import { HttpModule } from '@nestjs/axios';

describe('UciService', () => {
let service: UciService;

beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
imports: [ConfigModule, HttpModule],
providers: [UciService],
}).compile();

Expand Down

0 comments on commit 488ccb4

Please sign in to comment.