Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 497 Bytes

overview.md

File metadata and controls

19 lines (15 loc) · 497 Bytes

This extension provides a build tasks for linking test execution runs with work items defined in their name.

In the following example all test executions would be linked to work item #12345

describe('#12345 A group of tests', function () {
  it('does the thing', async function () {
    expect(true).toBeTruthy()
  })
})

//.... other tests

describe('Another group of tests', function () {
  it('#12345 still does the thing', async function () {
    expect(false).toBeFalsy()
  })
})