chore: fix prettier formatting (#1171)
This commit is contained in:
parent
5150ea9643
commit
6685b26dfb
@ -40,7 +40,9 @@ describe("validateBranchName", () => {
|
|||||||
it("should accept branch names containing # (git-valid, common in issue-linked branches)", () => {
|
it("should accept branch names containing # (git-valid, common in issue-linked branches)", () => {
|
||||||
// Reported in #1137: branches like "put-back-arm64-#2" were rejected
|
// Reported in #1137: branches like "put-back-arm64-#2" were rejected
|
||||||
expect(() => validateBranchName("put-back-arm64-#2")).not.toThrow();
|
expect(() => validateBranchName("put-back-arm64-#2")).not.toThrow();
|
||||||
expect(() => validateBranchName("feature/#123-description")).not.toThrow();
|
expect(() =>
|
||||||
|
validateBranchName("feature/#123-description"),
|
||||||
|
).not.toThrow();
|
||||||
expect(() => validateBranchName("fix/issue-#42")).not.toThrow();
|
expect(() => validateBranchName("fix/issue-#42")).not.toThrow();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user