Skip to content

Commit bab8208

Browse files
committed
adjusted test
1 parent 8b2efbf commit bab8208

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/test/shared/date.util.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { formatMs } from "@src/shared/date.util";
33

44
describe("Date Util Test", () => {
55
it("formatMs", () => {
6-
expect(formatMs(undefined)).toBe("");
6+
expect(formatMs(undefined)).toBe("-");
77
expect(formatMs(9000)).toBe("9000ms");
88
expect(formatMs(59*1000 + 50)).toBe("59s 50ms");
99
expect(formatMs(7*60*1000 + 50)).toBe("7min 0s");

0 commit comments

Comments
 (0)