Testing from JavaScript #13484
Unanswered
James Duley (parched)
asked this question in
Q&A
Replies: 1 comment 2 replies
|
Hi |
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Currently, I'm successfully testing my API and everything behind it using a C# test project with
DistributedApplicationTestingBuilder.I would now like to include the JavaScript frontend in that loop to get a full end-to-end test. The frontend is written in TypeScript. Does something like
DistributedApplicationTestingBuilderexist for Node.js? If not, how would I do it manually?I can start the app host by launching a
dotnet runprocess.However, I can't see how to get the API endpoint, the stdout just has the dashboard URL.
I tried running
dotnet run -- --helpto see what arguments the app host accepts, but it ignored--help, is this documented somewhere?All reactions