mirror of
https://github.com/yamadashy/repomix.git
synced 2025-06-11 00:25:54 +03:00
Remove unnecessary unknown type casting in processConcurrency.test.ts
Co-Authored-By: Kazuki Yamada <koukun0120@gmail.com>
This commit is contained in:
@@ -63,7 +63,7 @@ describe('processConcurrency', () => {
|
||||
describe('initPiscina', () => {
|
||||
beforeEach(() => {
|
||||
vi.mocked(os).availableParallelism = vi.fn().mockReturnValue(4);
|
||||
vi.mocked(Piscina).mockImplementation(() => ({}) as unknown as Piscina);
|
||||
vi.mocked(Piscina).mockImplementation(() => ({}) as Piscina);
|
||||
});
|
||||
|
||||
it('should initialize Piscina with correct configuration', () => {
|
||||
|
||||
Reference in New Issue
Block a user