test("returns undefined if undefined is given", () => {
        const testValue = undefined;
        const result = deepCopy(testValue);
        expect(result).toBe(testValue);
    });