it("queue.first", () => {
            const q = new Queue();
            expect(() => q.first()).toThrow("Can not get first of an empty queue.");
        });