Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test(fe): format phone number #1382

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions frontend/tests/unittests/services/ForestClientService.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import {
toTitleCase,
getTagColorByClientStatus,
goodStanding,
formatPhoneNumber,
} from "@/services/ForestClientService";
import type { Contact, Address } from "@/dto/ApplyClientNumberDto";

Expand Down Expand Up @@ -169,4 +170,26 @@ describe("ForestClientService.ts", () => {
});
});
});

describe("formatPhoneNumber", () => {
it("formats 10-digit phone numbers properly", () => {
const result = formatPhoneNumber("1234567890");
expect(result).toEqual("(123) 456-7890");
});

it("doesn't crash when phone numbers has more than 10 digits", () => {
const result = formatPhoneNumber("1234567890123");
expect(result).toEqual("(123) 456-7890123");
});

it("doesn't crash when phone numbers has less than 10 digits", () => {
const result = formatPhoneNumber("12345678");
expect(result).toEqual("(123) 456-78");
});

it("returns an empty string if phone number is undefined", () => {
const result = formatPhoneNumber(undefined);
expect(result).toEqual("");
});
});
});
Loading