SpecSync Documentation
Jira
Jira
  • Introduction to SpecSync for Jira
  • Getting started
    • Getting started using SpecFlow
    • Getting started using Cucumber or other Gherkin-based BDD tool
  • Installation & Setup
    • Install as .NET tool
    • Install as .NET Console App
    • Install as native binaries for Linux or macOS
    • Install as Docker image
    • Setup and Configure
  • Features
    • Push features
      • Pushing scenario changes to Test Cases
      • Configuring the format of the synchronized test cases
      • Synchronizing Scenario Outlines
      • Update Test Case fields
      • Attach files to Test Cases using tags
      • Customization: Setting Test Case fields with default values
      • Customization: Update custom Test Case fields on push
      • Customization: Ignoring marked Test Case steps
      • Customization: Ignoring Test Case Tags
      • Customization: Ignore non-supported local tags
      • Customization: Mapping tags
      • Customization: Synchronizing scenarios from feature branches
      • Customization: Automatically link changed Test Cases
      • Customization: Synchronize linked artifact titles
      • Customization: Do not synchronize title
    • Pull features
      • Pulling Test Case changes to local scenarios
    • Common synchronization features
      • Configuration key
      • Remote scope
      • Linking Work Items using tags
      • Synchronizing Test Case hierarchies
      • Excluding scenarios from synchronization
      • Synchronization conflict resolution
    • Test result publishing features
      • Publishing test result files
    • General features
      • Jira authentication options
      • Configuration file
      • Hierarchical configuration files
      • Local test case conditions
      • Configuration wizards
      • SpecSync plugins
    • Customizations
    • Plugin list
  • Licensing
  • Guides
    • What is my Jira server URL?
    • Jira Test Case Management (TCM) solution
    • How to define the local feature-set to be synchronized
    • Filters and scopes
    • How to use SpecSync from build or release pipeline
    • How to upgrade to a newer version of SpecSync
    • How to attach files to test results
    • Using SpecSync with Cucumber
    • Using SpecSync with Cypress
    • Using SpecSync with Postman
    • Using SpecSync with TestNG
    • Using SpecSync on macOS or Linux
    • Using SpecSync inside a Docker container
    • Migrating from SpecSync v1 to v5
  • Changelog
  • Release Model and Roadmap
  • Downloads
  • Reference
    • Command line reference
      • init
      • upgrade
      • push
      • pull
      • publish-test-results
      • version
    • Configuration reference
      • toolSettings
      • local
      • remote
      • jira
      • knownRemotes
      • synchronization
        • push
        • pull
        • links
        • attachments
        • format
        • fieldUpdates
      • hierarchies
      • publishTestResults
      • specFlow
      • customizations
    • Compatibility
    • Older versions
  • Contact
    • SpecSync Support
    • Troubleshooting
    • FAQ
  • Project Website
Powered by GitBook
On this page
  • Step 1: Define feature file sets
  • Step 2: Initialize configuration file using the SpecSync init command
  • Step 3: Review SpecSync features and extend configuration settings
  • Step 4: Verify setup by synchronizing scenarios

Was this helpful?

  1. Installation & Setup

Setup and Configure

PreviousInstall as Docker imageNextFeatures

Last updated 2 years ago

Was this helpful?

Once you have installed SpecSync for Jira tool, you need to configure it. This means you have to create a SpecSync configuration file (specsync.json) that contains the Jira project connection details and other synchronization settings.

Step 1: Define feature file sets

SpecSync has to be configured for every feature file set. Feature file set is a folder that contains feature files that you want to synchronize as one batch.

Feature file set is a term introduced by SpecSync to denote the set of feature files that belong together in a platform independent way. Earlier we used the term project folder, but it was misleading, because people might call different things as "project" on .NET, Java and node.js platforms and also it could be confused with Jira projects.

If you use SpecSync with SpecFlow, the Visual Studio projects configured with SpecFlow are the feature file sets.

For other BDD tools, like Cucumber, usually the features folder(s) are set as feature file sets.

Each feature file set will have its own SpecSync configuration file (specsync.json). For projects with multiple feature file sets, you can use as well.

It is up to you how you define your feature file sets. The following table contains a few usual setup variations.

Platform & tool
Feature file set (location of specsync.json)

.NET solution with a single SpecFlow project

The SpecFlow project folder (e.g. MyProject.Specs)

.NET solution with multiple SpecFlow projects

Each SpecFlow project folder (e.g. MyProject.BackOffice.Specs and MyProject.ClientApp.Specs)

node.js app with Cucumber.js

The parent folder of the features folder (e.g. /src/test/)

node.js app with multiple feature file sets

The parent folders of the features folders (e.g. /src/test/backoffice/ and /src/test/clientapp/)

Java app with Cucumber Java

The parent folder of the features folder (e.g. /src/test/resources/)

You can also consider setting the features folder itself as a root of the feature file set (e.g. /src/test/resources/features/ instead of /src/test/resources/).

The feature file sets of your project and be changed later by moving the specysnc.json configuration file to a different location.

Step 2: Initialize configuration file using the SpecSync init command

The easiest way to initialize the configuration file and configure the most important settings is to use the SpecSync init command. To use the command open a command window or bash shell and change the current directory to the root folder of the feature file set and invoke the following command.

dotnet specsync init
SpecSync4Jira.cmd init
<EXTRACTED-SPECSYNC-FOLDER>/SpecSync4Jira init

It is recommended to let the init command test the authentication to the Jira project to make sure the connection is configured properly.

Step 3: Review SpecSync features and extend configuration settings

Step 4: Verify setup by synchronizing scenarios

When the SpecSync configuration file is complete, you can perform the first synchronization task and verify the results using the push command.

For larger feature file sets it is recommended to make the first synchronization only for a few selected scenarios tagged with a particular tag. You can even temporarily tag a few scenarios in order to test the synchronization. In our example we assume that the selected scenarios are tagged with @specsync_test.

dotnet specsync push --tagFilter @specsync_test
SpecSync4Jira.cmd push --tagFilter @specsync_test
<EXTRACTED-SPECSYNC-FOLDER>/SpecSync4Jira push --tagFilter @specsync_test

The synchronization should run successfully and SpecSync should create Test Cases in Jira for the selected scenarios and link to them using a tag.

The init command will ask a few questions in order the setup the connection to the Jira project, like the server URL and the authentication details. If you are unsure about what is exactly your Jira server URL, please check the page. You can fine more information about the authentication options in the page.

The init command configures the settings that are enough for the first synchronization. SpecSync comes with useful default values for all settings, but you can still review the and extend the if you need to. It is recommended to think about whether you would like to .

To use the command open a command window or bash shell and change the current directory to the root folder of the feature file set and invoke the following command. For all command line option of the push command, please check the .

In case of errors, you can retry the synchronization with an additional --verbose option that displays additional diagnostic information. If this does not help, please check the page or contact .

hierarchical configuration files
What is my Jira server URL
Jira authentication options
SpecSync features
configuration
exclude any scenarios from the synchronization
Features
Configuration reference
command line reference
Troubleshooting
SpecSync Support