Skip to content

Commit

Permalink
fix(stackflow): time 함수 Test 설명 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
ssi02014 committed Aug 5, 2023
1 parent 31744d6 commit b743230
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/utils/time.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ beforeAll(() => {
jest.useFakeTimers();
});

test("time - 이전 호출과 현재 호출 사이에 시간이 동일한 경우 중복을 방지한다.", () => {
test("time - 기본적으로 getTime() 값을 반환하며, 이전 호출과 현재 호출 사이에 시간이 동일한 경우 중복을 방지한다.", () => {
const expectedTime1 = new Date("2023-08-06").getTime(); // 1691280000000
const expectedTime2 = new Date("2023-08-07").getTime(); // 1691366400000

Expand Down

0 comments on commit b743230

Please sign in to comment.