it("Viewing the stack", () => {
        const consoleSpy = jest.spyOn(console, "log");
        const s = new Stack<number>();
        s.push(1).push(2).push(3).view();