當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript factories.default函數代碼示例

本文整理匯總了TypeScript中mocks/categories/factories.default函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript default函數的具體用法?TypeScript default怎麽用?TypeScript default使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了default函數的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: createBasicTransaction

export function createBasicTransaction(props: Partial<BasicTransaction> = {}): BasicTransaction {
	return createPartialPayeeTransaction(Object.assign({
		transaction_type: "Basic" as TransactionType,
		category: createCategory({id: 1, name: "Category 1"}),
		subcategory: createCategory({id: 2, name: "Category 2", parent_id: 1})
	}, props)) as BasicTransaction;
}
開發者ID:scottohara,項目名稱:loot,代碼行數:7,代碼來源:index.ts

示例2: createSubtransaction

export function createSubtransaction(props: Partial<Subtransaction> = {}): Subtransaction {
	return createPartialTransaction(Object.assign({
		transaction_type: "Sub" as SubtransactionType,
		category: createCategory({id: 1, name: "Category 1"}),
		subcategory: createCategory({id: 2, name: "Category 2", parent_id: 1}),
		parent_id: null
	}, props)) as Subtransaction;
}
開發者ID:scottohara,項目名稱:loot,代碼行數:8,代碼來源:index.ts

示例3: createCategory

			beforeEach((): void => {
				category = createCategory({
					id: 999,
					name: "new category",
					direction: "outflow"
				});
				categoryIndexController.editCategory();
			});
開發者ID:scottohara,項目名稱:loot,代碼行數:8,代碼來源:index.ts

示例4: createCategory

		it("should copy the parent details if the category has a parent", (): void => {
			categoryEditController.category.parent = createCategory({
				id: 1,
				name: "parent",
				direction: "outflow"
			});
			categoryEditController.save();
			categoryEditController.category.direction.should.equal("outflow");
			(categoryEditController.category.parent_id as number).should.equal(1);
		});
開發者ID:scottohara,項目名稱:loot,代碼行數:10,代碼來源:edit.ts

示例5: createCategory

	beforeEach(inject((_categoryModel_: CategoryModel, _$httpBackend_: angular.IHttpBackendService, _$http_: angular.IHttpService, $cacheFactory: CacheFactoryMock, ogLruCacheFactory: OgLruCacheFactoryMock): void => {
		categoryModel = _categoryModel_;

		$httpBackend = _$httpBackend_;
		$http = _$http_;

		$cache = $cacheFactory();
		ogLruCache = ogLruCacheFactory.new();

		category = createCategory({id: 1});
	}));
開發者ID:scottohara,項目名稱:loot,代碼行數:11,代碼來源:category.ts

示例6:

		it("should return a filtered & limited list of parent categories", (): Chai.PromisedAssertion => categoryEditController.parentCategories("a", 3).should.eventually.deep.equal([
			createCategory({id: 1, name: "aa", num_children: 2, children: [
				createCategory({id: 10, name: "aa_1", parent_id: 1, parent:
					createCategory({id: 1, name: "aa", num_children: 2})
				}),
				createCategory({id: 11, name: "aa_2", parent_id: 1, parent:
					createCategory({id: 1, name: "aa", num_children: 2})
				})
			]}),
			createCategory({id: 4, name: "ba", direction: "outflow", children: []}),
			createCategory({id: 5, name: "ab", children: []})
		]));
開發者ID:scottohara,項目名稱:loot,代碼行數:12,代碼來源:edit.ts

示例7:

			it("should eventually return a filtered & limited list of subcategories", (): void => {
				categories = scheduleEditController.categories("a", 3, parentCategory);
				categories.should.eventually.deep.equal([
					createCategory({id: 1, name: "aa", num_children: 2, children: [
						createCategory({id: 10, name: "aa_1", parent_id: 1, parent:
							createCategory({id: 1, name: "aa", num_children: 2})
						}),
						createCategory({id: 11, name: "aa_2", parent_id: 1, parent:
							createCategory({id: 1, name: "aa", num_children: 2})
						})
					]}),
					createCategory({id: 4, name: "ba", direction: "outflow", children: []}),
					createCategory({id: 5, name: "ab", children: []})
				]);
			});
開發者ID:scottohara,項目名稱:loot,代碼行數:15,代碼來源:edit.ts

示例8: createCategory

		it("should clear the subcategory if it's parent no longer matches the selected category", (): void => {
			(scheduleEditController.transaction as ScheduledBasicTransaction).subcategory = createCategory({parent_id: 2});
			scheduleEditController.categorySelected();
			(null === (scheduleEditController.transaction as ScheduledBasicTransaction).subcategory).should.be.true;
		});
開發者ID:scottohara,項目名稱:loot,代碼行數:5,代碼來源:edit.ts


注:本文中的mocks/categories/factories.default函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。