本文整理汇总了TypeScript中ol3-fun/tests/base.should函数的典型用法代码示例。如果您正苦于以下问题:TypeScript should函数的具体用法?TypeScript should怎么用?TypeScript should使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了should函数的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: it
it("DEFAULT_OPTIONS", () => {
checkDefaultInputOptions(DEFAULT_OPTIONS);
should(!DEFAULT_OPTIONS.pagingStyle, "pagingStyle");
// workaround to create a popup w/out a map
let p1 = Popup.create({ autoPopup: false });
p1.options.autoPopup = true;
checkDefaultInputOptions(p1.options);
should(!!p1.options.pagingStyle, "pagingStyle");
});
示例2: it
it("Ensures css is destroyed with popup", () => {
let popup = Popup.create({
id: "my-popup",
autoPopup: false
});
let styleNode = document.getElementById("style-my-popup_options");
should(!!styleNode, "css node exists");
popup.destroy();
styleNode = document.getElementById("style-my-popup_options");
should(!styleNode, "css node does not exist");
});
示例3: it
it("asContent returns a DOM node with content", () => {
let popup = Popup.create({ autoPopup: false });
let feature = new ol.Feature({ name: "Feature Name" });
let html = popup.options.asContent(feature);
should(0 < html.outerHTML.indexOf("Feature Name"), "Feature Name");
shouldEqual(
`<table><tbody><tr><td>name</td><td>Feature Name</td></tr></tbody></table>`,
html.innerHTML,
"popup markup"
);
});
示例4: checkDefaultInputOptions
function checkDefaultInputOptions(options: PopupOptions) {
should(!!options, "options");
shouldEqual(typeof options.asContent, "function", "asContent");
shouldEqual(options.autoPan, true, "autoPan");
shouldEqual(!options.autoPanAnimation, true, "autoPanAnimation");
shouldEqual(options.autoPanMargin, 20, "autoPanMargin");
shouldEqual(options.autoPopup, true, "autoPopup");
shouldEqual(options.autoPositioning, true, "autoPositioning");
shouldEqual(options.className, "ol-popup", "className");
shouldEqual(typeof options.css, "string", "css");
shouldEqual(!options.dockContainer, true, "dockContainer");
shouldEqual(!options.element, true, "element");
shouldEqual(!!options.id, true, "id");
shouldEqual(options.insertFirst, true, "insertFirst");
shouldEqual(!options.layers, true, "layers");
shouldEqual(!options.map, true, "map");
shouldEqual(!options.multi, true, "multi");
shouldEqual(stringify(options.offset), stringify([0, -10]), "offset");
shouldEqual(options.pointerPosition, 20, "pointerPosition");
shouldEqual(!options.position, true, "position");
shouldEqual(options.positioning, "bottom-center", "positioning");
shouldEqual(!options.showCoordinates, true, "showCoordinates");
shouldEqual(options.stopEvent, true, "stopEvent");
}