add test for floating vertical position

This commit is contained in:
Tom Hunkapiller
2021-05-23 08:20:29 +03:00
parent 08bd2744b6
commit 1ea6017483

View File

@ -49,5 +49,9 @@ describe("VerticalPosition", () => {
],
});
});
it("should require one of align or offset", () => {
expect(() => new VerticalPosition({})).to.throw();
});
});
});