TFS- Cannot see the Define tab in Test Plans - azure-devops

In TFS on Microsoft platform cannot see the Define tab in Test Plans although I have the right access. Is there anyone who can help me?
enter image description here

Update:
Form Help me understand the new page:
Define tab: Collate, add and manage test cases in a test suite of
choice via this tab.
Therefore, you have to use Basic + Test Plans or Visual Studio Enterprise access level to manage tests in a test plan: Supported access levels.
If you add a screenshot to your question, this will help to see your problem. If you use TFS, it may not include Define tab in Test Plans because it in preview.
For Azure DevOps Services. Check that you have enabled "New Test Plans Page" feature in the preview features:
Sign-in into your Azure DevOps Services organization
Click on your Avatar on the top right and navigate to "Preview
Features"
Enable the 'New Test Plans Page' feature.
Here you can find some information about the New Test Plans Page.

Related

I am looking for a way in Azure DevOps to have a good overview of the status of my A/B tests

Since the process of one A/B test usually takes multiple sprints I would like to add another board in which I can add the A/B tests (as F.E. features). User stories for one sprint can then be added to a specific sprint for my team (which consists of a few specialists and a developer). This way I am able to overview the status (research phase, test , code writing, running, analysis, etc.) of all tests in one overview. I have not been able to find out how this is possiblie within Azure Devops, or if there is a work around. Can anyone help me?
My team also works in projects other than A/B tests, which means we cannot use the boards section.
Unless there is a hidden way to add another board to a team?
You could Copy or clone a work item to add the user stories or tests to a new boards. Open the user story you want to clone, then click Create copy of work item and choose whether to include exist links, attachments and child work items. After creating, change the Area and Iteration to your target boards.
Update
In Azure DevOps you can only create boards by creating a team. The team board is created as a side-effect of creating the team. Please refer to Manage and configure team tools and Configure and customize Azure Boardsfor details.
After creating and configuring a new team, you could see the boards in the dropdown list.

Dialogflow fulfillment - reset

I got a shocked when my in-line editor code is being reset to the default code by itself. However, it seems like the dialogflow chatbot is still functioning well with my code. I even tired to deploy the draft code I have saved to prevent such incident but it keep shows error when deploying.
What can I do or why is this happening?
https://i.stack.imgur.com/DZuwo.png
I encountered this too. In our case it was because of an issue with the billing. Once we fixed the billing problem, our code appeared again in the editor.
Where to find the code outside Dialogflow
The fulfillment uses Google Cloud Functions. You can find the source code in that section of the Google Cloud Console. Remember to select the correct project where your Dialogflow agent resides.
Navigate there, then you will see a list of Cloud Functions. Select the one for your agent, likely named "dialogflowFirebaseFulfillment". Go into it and you will see tabs, one of which is "Source". From Source tab you can download the source code as a ZIP file.
You can't download this file if you have active billing problems.
Fix billing problems
Go to the Google Cloud Console, navigate to billing (or "Linked billing account" if asked). Then you go to Payment Overview tab in the Overview section to see any issues. Resolve these.
You may have to go to the "Account management" section and click to re-enable billing after you fixed payment issue.

Azure DevOps: Adding team members to a new team/area

I have created a new Team/Area under our project within Azure DevOps.
When I send the URL for the backlog, the team members are able to access the link but not see any of the work items.
I have tried the following:
Confirm the user has Basic licence.
Confirm the user has access to the project.
Added the user to the Team for that area.
Is there anything obvious I am missing?
I am pretty confident this is not a bug, but just something in the process of giving users access that I am not doing.
Any help very much appreciated.
Thanks,
Alasdair.
When I send the URL for the backlog, the team members are able to access the link but not see any of the work items.
This could be caused by multiple reasons which means we might need to check several setttings.
Choose the right team in BackLogs page:
check the Project Settings-Team configuration-Areas, make sure the target Team area has been added:
Check Project Settings - Permissions and make sure your team has
the right permission to see the BackLogs Itmes.
Is this something that I need to set every time I create a new team?
No, you don't have to set them every time. When you create a team,
the Permissions setting could be automatically inherited:

How to add custom summary tab in the custom azure devops plugin, When Experimental Theme and Multi-stage Pipelines are in switched-on Mode?

Currently I'm developing a custom plugin to Azure devops, and met with an issue when I set a scan in the build pipeline, after scan completed, I was not able to see the custom summary tab, in the Azure devops 'Summary' tab section.As the root cause for this, What I found was , I have accidentally switched-on the below features in the Azure devops preview features section.
Experimental Themes
Multi-stage Pipelines
Further, I was able to see the custom 'summary' section after scan completes, when the above mentioned features are in switched-off mode.
In the development, custom summary section is placed in the,below mentioned placeholder,
".build-info-tab",
"ms.vss-build-web.build-results-summary-tab"
So, When those preview features in switched-on mode, the placeholder which we are placing the custom summary section, is different than the above mentioned placeholder? If not, how can I implement my custom summary section into, Azure devops summary section when the experimental and multi-stage preview features are in switched-on mode ?
Any suggestion or advice will be highly appreciated. Thanks in advance!
I can reproduce your scenario. I have to place my custom section to the build results view as results tab to display it as workaround. Below is the targets:
"id": "build-custom-tab",
"type": "ms.vss-build-web.build-results-tab",
"description": "A tab contributing to build results view",
"targets": [
"ms.vss-build-web.build-results-view"
]
You can also report this issue to Microsoft Dev team, Hope they could look into this issue.

How to link test results to user story in Azure DevOps (VSTS)?

I want to link test run results to user story to add more traceability on board for all team members.
I've found that I can add link for New and Existing items, but there I can find only Work item type: Bug, Blocker, Epic, Feature, Test Case, User Story etc.
If I add link to test case, I will see only test case itself (test steps) and can't find any information about this test case in some test suit or test run results.
I've explored VSTS documentation: Link user stories, issues, bugs, and other work items and Linking, traceability, and managing dependencies.
As I understood, there is no such functionality right now in Azure DevOps (VSTS).
As you said, currently there is no such thing in Azure DevOps, but there is a great extension to add the test run results in the test case.
The (free) extension called View Latest Test Result, after you install it you need to modify the process template (to add the results) and then you got this:
On Developer Community I found opened ticket for it:
Need ability to link Test Results back to ANY work item type, especially User Stories
I did up vote, but it seems that for now I can only wait for this feature.