本文整理汇总了TypeScript中rxjs/internal/observable/of.of函数的典型用法代码示例。如果您正苦于以下问题:TypeScript of函数的具体用法?TypeScript of怎么用?TypeScript of使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了of函数的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: constructor
constructor() {
this.rooms = of([{
id: '1',
title: 'Star Fox' ,
picture: '.jpg'
},
{
id: '2',
title: 'Zelda',
picture: '.jpg'
},
{
id: '3',
title: 'Donkey Kong',
picture: '.jpg'
},
{
id: '4',
title: 'Sim City',
picture: '.jpg',
},
{
id: '5',
title: 'Halo',
picture: '.jpg',
}]);
}
开发者ID:YeseniaEC,项目名称:gw-reserve,代码行数:27,代码来源:room.service.ts
示例2: it
it('should disabled when just hava the default device', () => {
spyOn(dotDeviceService, 'get').and.returnValue(of([]));
fixture.detectChanges();
const pDropDown: DebugElement = de.query(By.css('p-dropdown'));
expect(pDropDown.componentInstance.disabled).toBeTruthy();
});
开发者ID:dotCMS,项目名称:core-web,代码行数:8,代码来源:dot-device-selector.component.spec.ts
示例3: it
it('should not execute recaptcha when captcha is disabled', () => {
component.teamName = 'some team';
component.password = 'some password';
const captchaResponse: HttpResponse<string> = new HttpResponse({
body: JSON.stringify({captchaEnabled: false})
});
mockTeamService.isCaptchaEnabledForTeam.and.returnValue(of(captchaResponse));
component.requestCaptchaStateAndLogIn();
expect(mockTeamService.login).toHaveBeenCalled();
expect(mockRecaptchaComponent.execute).not.toHaveBeenCalled();
});
开发者ID:milesjos,项目名称:retroquest,代码行数:14,代码来源:login.page.spec.ts
示例4: it
it('should set jwt as cookie and navigate to team page when captcha is disabled', () => {
component.teamName = 'Team Name';
component.password = 'p4ssw0rd';
component.confirmPassword = 'p4ssw0rd';
const teamUrl = 'team/teamId';
const jwt = 'im.a.jwt';
const createTeamResponse: HttpResponse<string> = new HttpResponse({
body: jwt,
headers: new HttpHeaders({location: teamUrl})
});
const captchaResponse: HttpResponse<string> = new HttpResponse({
body: JSON.stringify({captchaEnabled: false})
});
mockTeamService.isCaptchaEnabled.and.returnValue(of(captchaResponse));
mockTeamService.create.and.returnValue(of(createTeamResponse));
component.requestCaptchaStateAndCreateTeam();
expect(AuthService.setToken).toHaveBeenCalledWith(jwt);
expect(mockRouter.navigateByUrl).toHaveBeenCalledWith(teamUrl);
});
开发者ID:milesjos,项目名称:retroquest,代码行数:24,代码来源:create.page.spec.ts
示例5: beforeEach
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [MaterialMock, MaterialTextfieldMock, SettingsGeneralComponent],
imports: [RouterTestingModule, ReactiveFormsModule, CommonModule, FormsModule],
providers: [
{ provide: Session, useValue: sessionMock },
{ provide: Client, useValue: clientMock },
{ provide: ThirdPartyNetworksService, useValue: thirdPartyNetworksServiceMock },
{ provide: ActivatedRoute, useValue: { params: of({ 'guid': '1000' }) } },
{ provide: Router, useValue: routerMock },
]
})
.compileComponents();
}));
开发者ID:iamthelogik83,项目名称:front,代码行数:15,代码来源:general.component.spec.ts
示例6: beforeEach
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [
TokenPipe,
MockComponent({ selector: 'm-wire-console--overview'}),
MockComponent({ selector: 'm-wallet--balance-usd'}),
MockComponent({ selector: 'm-wallet--balance-rewards'}),
MockComponent({ selector: 'm-wallet--balance-tokens'}),
WalletOverviewComponent
],
providers: [
{ provide: Client, useValue: clientMock },
{ provide: WalletService, useValue: WalletServiceMock },
{ provide: BlockchainService, useValue: blockchainService },
{ provide: Router, useValue: RouterTestingModule },
{ provide: MindsTitle, useValue: MockService(MindsTitle) },
{ provide: Session, useValue: sessionMock },
{ provide: Storage, useValue: storageMock },
{ provide: ActivatedRoute, useValue: { url: of([{ path: 'newsfeed' }]), params: of({ filter: 'trending' }) } }
]
})
.compileComponents(); // compile template and css
}));
开发者ID:iamthelogik83,项目名称:front,代码行数:24,代码来源:overview.component.spec.ts
示例7: beforeEach
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [
MockDirective({ selector: '[mdl]', inputs: ['mdl'] }),
MockComponent({ selector: 'minds-card', inputs: ['object', 'hostClass'] }),
MockComponent({ selector: 'minds-button', inputs: ['object', 'type'] }),
BoostConsoleBooster
],
imports: [RouterTestingModule, ReactiveFormsModule],
providers: [
{ provide: Client, useValue: clientMock },
{ provide: Session, useValue: sessionMock },
{ provide: ActivatedRoute, useValue: { parent: { url: of([{ path: 'newsfeed' }]) } } }
]
})
.compileComponents();
}));
开发者ID:iamthelogik83,项目名称:front,代码行数:18,代码来源:booster.component.spec.ts
注:本文中的rxjs/internal/observable/of.of函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论