empty string
All checks were successful
PR Check / lint-and-format (pull_request) Successful in 17s

This commit is contained in:
Mylloon 2024-10-08 20:38:53 +02:00
parent d3251fd50a
commit 32f537cd05
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

View file

@ -25,4 +25,10 @@ describe("Capitalize", () => {
expect(name.capitalize()).toBe("Super");
});
}
{
const name = "";
test(name, () => {
expect(name.capitalize()).toBe("");
});
}
});