synchronization

This configuration section contains synchronization settings.

The following example shows the available options within this section.

{
  ...
  "synchronization": {
    "disableLocalChanges": false,
    "testCaseTagPrefix": "tc",
    "tagPrefixSeparators": [":"],
    "pull": {
      "enabled": true,
      "enableCreatingScenariosForNewTestCases": false
    },
    "links": [
      {
        "targetWorkItemType": "ProductBacklogItem",
        "tagPrefix": "pbi",
        "relationship": "Child"
      },
      {
        "tagPrefix": "bug"
      }
    ],
    "attachments": {
      "enabled": true,
      "tagPrefixes": [
        "wireframe",
        "specification"
      ],
      "baseFolder": "resources/files"
    },
    "format": {
      "prefixBackgroundSteps": true,
      "prefixTitle": true,
      "showParameterListStep": "whenUnusedParameters"
    }
  },
  ...
}

Settings

For sub-section settings, click on the name of the setting for details.

Setting
Description
Default

disableLocalChanges

false

testCaseTagPrefix

The tag prefix for specifying the test cases. E.g. specify testcase for referring to test cases using a tag, like @testcase:P01-T1234.

tc

tagPrefixSeparators

Specifies one or more tag prefix separators to recognize in order to be able to support links like @story=42. For creating tags, the first separator is used.

[":"] (only : can be used as separator)

linkLabelSeparator

Specifies the link label separator in order to be able to support links like @story:42,this_is_the_title.

;

Last updated