describe: Function

export describe : Function

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

Group test cases together under a common description prefix.

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

Example:

describe('some component', () => { it('does something', () => { // This is a test. }); });