Run pre-commit

This commit is contained in:
purple_emily
2024-03-08 14:34:53 +00:00
parent 31e16df720
commit 79409915cf
221 changed files with 525 additions and 526 deletions

View File

@@ -33,7 +33,7 @@ jest.mock('@services/logging_service', () => {
xdescribe('MongoRepository Tests - Manual Tests against real cluster. Skipped by default.', () => {
let mongoRepository: MongoRepository,
mockLogger: ILoggingService;
beforeEach(() => {
jest.clearAllMocks();
process.env.LOG_LEVEL = 'debug';
@@ -89,4 +89,4 @@ xdescribe('MongoRepository Tests - Manual Tests against real cluster. Skipped by
const result = await mongoRepository.getImdbId('Return of the Jedi', TorrentType.Movie, 1983);
expect(result).toBe('tt0086190');
}, 30000);
});
});