Add failing test for pull/206

This commit is contained in:
Ola Hungerford
2025-03-24 09:43:48 -07:00
parent b7fa23676a
commit 379486b5ea

View File

@@ -161,6 +161,31 @@ describe("Sidebar Environment Variables", () => {
NEW_THIRD_KEY: "third_value", NEW_THIRD_KEY: "third_value",
}); });
}); });
it("should maintain order during key editing", () => {
const setEnv = jest.fn();
const initialEnv = {
KEY1: "value1",
KEY2: "value2"
};
renderSidebar({ env: initialEnv, setEnv });
openEnvVarsSection();
// Type "NEW_" one character at a time
const key1Input = screen.getByDisplayValue("KEY1");
"NEW_".split("").forEach((char) => {
fireEvent.change(key1Input, { target: { value: char + "KEY1".slice(1) } });
});
// Verify the last setEnv call maintains the order
const lastCall = setEnv.mock.calls[setEnv.mock.calls.length - 1][0] as Record<string, string>;
const entries = Object.entries(lastCall);
// The values should stay with their original keys
expect(entries[0][1]).toBe("value1"); // First entry should still have value1
expect(entries[1][1]).toBe("value2"); // Second entry should still have value2
});
}); });
describe("Multiple Operations", () => { describe("Multiple Operations", () => {