本文整理汇总了TypeScript中mocks/payees/factories.default函数的典型用法代码示例。如果您正苦于以下问题:TypeScript default函数的具体用法?TypeScript default怎么用?TypeScript default使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了default函数的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: createScheduledTransferTransaction
beforeEach((): void => {
// The previous transaction to merge
transaction = createScheduledTransferTransaction({flag: "flag"});
// The current transaction to merge into
scheduleEditController.transaction = createScheduledTransferTransaction({
payee: createPayee(),
category: {
id: "TransferFrom",
name: "Transfer From"
}
});
mockAngularElement = {
triggerHandler: sinon.stub()
};
currentElement = null;
realAngularElement = angular.element;
sinon.stub(angular, "element").callsFake((selector: string): (Element | null)[] | {triggerHandler: SinonStub} => {
if ("#amount, #category, #subcategory, #account, #quantity, #price, #commission, #memo" === selector) {
return [currentElement];
}
return mockAngularElement;
});
});
开发者ID:scottohara,项目名称:loot,代码行数:27,代码来源:edit.ts
示例2: createPayee
it("should do nothing if the item has no id", (): void => {
const payee = createPayee();
delete payee.id;
transactionModel["invalidateCache"](payeeModel, payee);
payeeModel.flush.should.not.have.been.called;
});
开发者ID:scottohara,项目名称:loot,代码行数:7,代码来源:transaction.ts
示例3: createPayee
beforeEach((): void => {
payee = createPayee({
id: 999,
name: "new payee"
});
payeeIndexController.editPayee();
});
开发者ID:scottohara,项目名称:loot,代码行数:7,代码来源:index.ts
示例4: createPayee
beforeEach((): void => {
scheduleEditController.transaction.id = null;
payee = createPayee();
primaryAccount = createAccount();
scheduleEditController.mode = "Add Schedule";
(scheduleEditController.transaction as ScheduledBasicTransaction).payee = payee;
scheduleEditController.transaction.primary_account = primaryAccount;
sinon.stub(scheduleEditController, "getSubtransactions" as keyof ScheduleEditController);
sinon.stub(scheduleEditController, "useLastTransaction" as keyof ScheduleEditController);
});
开发者ID:scottohara,项目名称:loot,代码行数:10,代码来源:edit.ts
示例5: createPayee
beforeEach(inject((_payeeModel_: PayeeModel, _$httpBackend_: angular.IHttpBackendService, _$http_: angular.IHttpService, $cacheFactory: CacheFactoryMock, ogLruCacheFactory: OgLruCacheFactoryMock): void => {
payeeModel = _payeeModel_;
$httpBackend = _$httpBackend_;
$http = _$http_;
$cache = $cacheFactory();
ogLruCache = ogLruCacheFactory.new();
payee = createPayee({id: 1});
}));
开发者ID:scottohara,项目名称:loot,代码行数:11,代码来源:payee.ts
示例6:
it("should return a filtered & limited list of payees", (): Chai.PromisedAssertion => payees.should.eventually.deep.equal([
createPayee({id: 1, name: "aa"}),
createPayee({id: 4, name: "ba"}),
createPayee({id: 5, name: "ab"})
]));
开发者ID:scottohara,项目名称:loot,代码行数:5,代码来源:edit.ts
示例7: createPartialPayeeTransaction
function createPartialPayeeTransaction(props: Partial<Transaction | SplitTransactionChild>): Partial<Transaction | SplitTransactionChild> {
return createPartialCashTransaction(Object.assign({payee: createPayee({id: 1, name: "Payee 1"})}, props));
}
开发者ID:scottohara,项目名称:loot,代码行数:3,代码来源:index.ts
注:本文中的mocks/payees/factories.default函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论