Added fine-grained control over search for server use.

This commit is contained in:
Tom
2025-02-20 04:36:48 +00:00
parent a764e1d441
commit cd3ba11924
14 changed files with 677 additions and 149 deletions

View File

@@ -0,0 +1,18 @@
import { Test, TestingModule } from '@nestjs/testing';
import { ProvidersService } from './providers.service';
describe('ProvidersService', () => {
let service: ProvidersService;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
providers: [ProvidersService],
}).compile();
service = module.get<ProvidersService>(ProvidersService);
});
it('should be defined', () => {
expect(service).toBeDefined();
});
});