当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript base.should函数代码示例

本文整理汇总了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");
	});
开发者ID:ca0v,项目名称:ol3-popup,代码行数:9,代码来源:popup.ts

示例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");
	});
开发者ID:ca0v,项目名称:ol3-popup,代码行数:11,代码来源:popup-css.ts

示例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"
		);
	});
开发者ID:ca0v,项目名称:ol3-popup,代码行数:11,代码来源:popup-content.ts

示例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");
}
开发者ID:ca0v,项目名称:ol3-popup,代码行数:24,代码来源:popup.ts

示例5: should

				.catch(ex => {
					should(!ex, ex);
				});
开发者ID:ca0v,项目名称:ol3-popup,代码行数:3,代码来源:popup-css.ts


注:本文中的ol3-fun/tests/base.should函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。