test: 完善测试用例

This commit is contained in:
Ivan
2021-07-09 10:17:16 +08:00
parent 256878890b
commit 5ed17cc04b
2 changed files with 17 additions and 1 deletions

View File

@ -1,4 +1,5 @@
import { Test, TestingModule } from '@nestjs/testing';
import { RedisService } from 'nestjs-redis';
import { RedisMutexService } from './redis-mutex.service';
describe('RedisMutexService', () => {
@ -6,7 +7,13 @@ describe('RedisMutexService', () => {
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
providers: [RedisMutexService],
providers: [
RedisMutexService,
{
provide: RedisService,
useValue: {},
},
],
}).compile();
service = module.get<RedisMutexService>(RedisMutexService);