Skip to content
Advertisement

Tag: azure-devops

Automated UI test association in Azure DevOps doesn’t work?

I am writing automated UI tests using TestCafe framework. And it needs to associate the test.js file with a TestCase in Azure DevOps to run pipelines and for receiving reports in Test Plan > Progress report. But somehow I can not associate test.js file with a TestCase because the VisualStudio doesn’t sees it Have followed this article https://learn.microsoft.com/en-us/azure/devops/test/associate-automated-test-with-test-case?view=azure-devops But was

Question for Accessing MS Graph Using Client Credentials One Drive?

I can’t seem to grasp my error this is the result of the JSON return it’s not telling me anything I don’t know what’s wrong, I looked at the token and I have roles by the way I have client_credentials token Update: I tried on https://developer.microsoft.com/en-us/graph/graph-explorer using this api https://graph.microsoft.com/v1.0/drive/root it works on that website, But in postman it won’t

Uploading an attachment to Azure DevOps Server using Rest API from a JavaScript application

I’m looking for an example on how to generate the request body when uploading an attachment to Azure DevOps Server. Looking at the documentation here, it notes the content for the body should be “[BINARY FILE CONTENT]”. The content of the body is coming from a URL (https://someURL/images/abc.png for example). How do I get from fetch(url) -> binary content to

Azure DevOps React Container Production Build JavaScript heap out of memory error

I am trying to build react prod docker container with Azure DevOps pipelines. After I upgrade my build environment and code, Pipeline failed. After some research I add “–node-flags –max-old-space-size=8192” statement my build command. But it didn’t matter. I also try tried relevant node containers for a build, it didn’t work. Dockerfile: My package.json file: Thank you for help! Answer

Advertisement