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


TypeScript simulant.fire函數代碼示例

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


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

示例1: it

  it('should support selecting the document element', function(done) {
    function app(_sources: {DOM: MainDOMSource}) {
      return {
        DOM: xs.of(div('hello world')),
      };
    }

    const {sinks, sources, run} = setup(app, {
      DOM: makeDOMDriver(createRenderTarget()),
    });

    function isDocument(element: any): element is Document {
      return 'body' in element && 'head' in element;
    }

    let dispose: any;
    sources.DOM.select('document')
      .events('click')
      .take(1)
      .addListener({
        next: (event: Event) => {
          assert(isDocument(event.target));
          setTimeout(() => {
            dispose();
            done();
          });
        },
      });
    dispose = run();
    simulant.fire(document, 'click');
  });
開發者ID:cyclejs,項目名稱:cyclejs,代碼行數:31,代碼來源:select.ts

示例2: it

	it('checks input sends message on enter with text input value', async(inject([ChatRoomService], (chatRoomServiceMock: ChatRoomServiceMock) => {
		chatRoomServiceMock.connected$.next(true);
		fixture.detectChanges();
		let input = fixture.debugElement.query(By.css('input')).nativeElement;
		input.value = 'test';
		fixture.detectChanges();
		let event = simulant('keyup', {key: 'enter', code: 13, keyCode: 13});
		simulant.fire(input, event);
		fixture.detectChanges();
		expect(chatRoomServiceMock.send).toHaveBeenCalledWith('test');
	})));
開發者ID:misterBIT,項目名稱:angular2-workshop-samples,代碼行數:11,代碼來源:chat-room.component.spec.ts


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