xdescribe: Function

export xdescribe : Function

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

Like describe, but instructs the test runner to exclude this group of test cases from execution. This is useful for debugging, or for excluding broken tests until they can be fixed.

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

Example:

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