feat: implement move column move row with tests

This commit is contained in:
BrianHung
2025-06-30 10:24:17 -07:00
committed by Nicolás Hatcher Andrés
parent e420f7e998
commit caf26194df

View File

@@ -209,6 +209,3 @@ test("move column", () => {
assert.strictEqual(model.getCellContent(0, 6, 5), "=SUM(H3:H7)"); assert.strictEqual(model.getCellContent(0, 6, 5), "=SUM(H3:H7)");
assert.strictEqual(model.getCellContent(0, 7, 5), "=SUM(G3:G7)"); assert.strictEqual(model.getCellContent(0, 7, 5), "=SUM(G3:G7)");
}); });