it("graph.removeVertex.invalid_vertex", () => {
        const g = new Graph();
        g.addVertex("a").addVertex("b");
        expect(() => g.removeVertex("c")).toThrow(
            "Can not remove a vertex that does not exist.",