fix: shortened describe

This commit is contained in:
Jacob Kim
2025-07-11 19:56:41 -07:00
parent 643ac14a3c
commit 528f68d49d

View File

@@ -57,7 +57,7 @@ describe("Test myers diff function", () => {
});
});
describe("Test myersCharDiff function", () => {
describe("Test myersCharDiff function on the same line", () => {
test("should differentiate character changes", () => {
const oldContent = "hello world";
const newContent = "hello earth";
@@ -364,7 +364,9 @@ describe("Test myersCharDiff function", () => {
},
]);
});
});
describe("Test myersCharDiff function on the same line", () => {
test("should track line indices for multi-line changes", () => {
const oldContent = ["Line one", "Line two", "Line three"].join("\n");