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


TypeScript testing.xdescribe函數代碼示例

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


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

示例1: main

export function main() {
  // TODO It's hard to test. It will be solved by https://github.com/angular/angular/issues/4112.
  xdescribe('UserEditPage', () => {

    var ctx:TestContext;

    var cmpDebugElement:DebugElement;

    var routeParams:RouteParams;

    beforeEachProviders(() => {
      routeParams = jasmine.createSpyObj('routeParams', ['get']);

      return [
        APP_TEST_PROVIDERS,
        provide(RouteParams, {useValue: routeParams}),
      ]
    });
    beforeEach(createTestContext(_  => ctx = _));

    beforeEach(done => {
      ctx.init(TestCmp)
        .finally(done)
        .subscribe(() => {
          cmpDebugElement = ctx.fixture.debugElement.query(By.directive(UserEditPage));
        }, console.error);
    });

    it('can be shown', () => {
      expect(cmpDebugElement).toBeTruthy();
    });

  });
}
開發者ID:windwang,項目名稱:angular2-app,代碼行數:34,代碼來源:UserEditPage.spec.ts

示例2: fdescribe

                       });
});
// #enddocregion

// #docregion fdescribe
fdescribe('some component', () => {
  it('has a test', () => {
                       // This test will run.
                   });
});
describe('another component',
         () => { it('also has a test', () => { throw 'This test will not run.'; }); });
// #enddocregion

// #docregion xdescribe
xdescribe('some component', () => { it('has a test', () => {throw 'This test will not run.'}); });
describe('another component', () => {
  it('also has a test', () => {
                            // This test will run.
                        });
});
// #enddocregion

// #docregion fit
describe('some component', () => {
  fit('has a test', () => {
                        // This test will run.
                    });
  it('has another test', () => { throw 'This test will not run.'; });
});
// #enddocregion
開發者ID:0oAimZo0,項目名稱:Angular2Learning,代碼行數:31,代碼來源:testing.ts

示例3: it

  it('should run a passing test', () => {
    expect(true).toEqual(true, 'should pass');
  });
});

xdescribe('AppComponent', function () {
  beforeEachProviders(() => [
    provide(APP_BASE_HREF, { useValue: '/' }),
    provide(ApplicationRef, { useClass: MockApplicationRef }),
    provide(ROUTER_PRIMARY_COMPONENT, { useValue: AppComponent })
  ]);

  it('should instantiate component',
    injectAsync([TestComponentBuilder], (tcb: TestComponentBuilder) => {

      return tcb.createAsync(AppComponent).then(fixture => {
        expect(fixture.componentInstance instanceof AppComponent).toBe(true, 'should create AppComponent');
      });
    }));

  xit('should have expected <h1> text',
    injectAsync([TestComponentBuilder], (tcb: TestComponentBuilder) => {

      return tcb.createAsync(AppComponent).then(fixture => {
        // fixture.detectChanges();  // need for a binding; we don't have one
        let h1 = fixture.debugElement.query(el => el.name === 'h1').nativeElement;
        expect(h1.innerText).toMatch(/angular 2 app/i, '<h1> should say something about "Angular 2 App"');
      });
    }));
});
開發者ID:nickbarnettworks,項目名稱:event-view,代碼行數:30,代碼來源:app.component.spec.ts

示例4: xdescribe

xdescribe('TNSYourPluginComponent', () => {
  let fixture;
  
  //setup
  beforeEachProviders(() => [
    TestComponentBuilder
  ]);

  beforeEach(injectAsync([TestComponentBuilder], tcb => {
    return tcb.overrideTemplate(TNSYourPluginComponent, (`
    <StackLayout>
      <SegmentedBar (selectedIndexChanged)="changeOption($event)"></SegmentedBar>
    </StackLayout>
    `)).createAsync(TestComponent)
      .then(f => fixture = f);
  }));

  it('should ...', () => {
    let container = fixture.componentInstance,
      div = fixture.nativeElement.querySelector('StackLayout');
    expect(div.textContent).toBe('');
  });

  @Component({
    selector: 'test',
    directives: [TNSYourPluginComponent],
    template: `
    <plugin></plugin>
    `
  })
  class TestComponent {}  

});
開發者ID:TheOriginalJosh,項目名稱:nativescript-ng2-plugin-seed,代碼行數:33,代碼來源:yourplugin.component.todo-test.ts


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