當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。