fdescribe: Function

export fdescribe : Function

exported from angular2/testing defined in angular2/src/testing/testing.ts (line 60)

Like describe, but instructs the test runner to only run the test cases in this group. This is useful for debugging.

See http://jasmine.github.io/ for more details.

Example:

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.'; }); });