Skip to content

Commit

Permalink
chore: getGitLog 테스트 설명 문구 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
kimyh93 committed Oct 4, 2024
1 parent 07f0c21 commit 24d53e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/vscode/src/test/utils/getGitLog.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@ mockSpawn.mockImplementation(() => {
};
});

describe("getGitLog util test with dynamic number of threads", () => {
describe("getGitLog util test", () => {
afterEach(() => {
mockSpawnCallCount = 0; // initailize call count
});

it("should return the combined git log output from dynamic number of threads", async () => {
it("should return the combined git log output from number of threads", async () => {
const result = await getGitLog("git", "/mocked/path/to/repo");

const expectedData = Array.from({ length: mockSpawnCallCount }) // Create an array with length equal to call count
Expand Down

0 comments on commit 24d53e9

Please sign in to comment.