Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Azure by (7k points)

Using release pipeline to deploy tests. Once the test execute in release,it should update the test plan. Test cases with scenario get updated in test plan but scenario outline is not getting updating.

closed

1 Answer

+1 vote
by (31.9k points)
edited by
 
Best answer

Use Scenario Outline wrappers. SpecSync generates a special wrapper method, which wraps the execution of the individual Scenario.

1. Specify testSuiteBasedExecutionWithScenarioOutlineWrappers as test execution strategy in the synchronization/automation section of the configuration file.

{

  ...

  "synchronization": {

    ...

    "automation": {

      "enabled": true,

      "testExecutionStrategy": "testSuiteBasedExecutionWithScenarioOutlineWrappers"

    },

    ...

  },

  ...

}

2. Install the plugin, SpecSync SpecFlow, to the project as a NuGet package.

Want to become Azure Developer, check out this Azure Tutorial.

Are you looking to crack the Azure Certification Exam? Check out Intellipaat's Azure Online Training!

Related questions

Browse Categories

...