client-javascript
client-javascript copied to clipboard
This Client is to communicate with the ReportPortal on Node.js.
I have the following code to update a finished launch: ``` // version = "@reportportal/client-javascript": "^5.0.13" import RPClient from "@reportportal/client-javascript"; const rpClient = new RPClient(RPconfig); const launchObj = await rpClient.startLaunch({});...
At https://github.com/reportportal/client-javascript/blob/develop/lib/report-portal-client.js#L107, when called from https://github.com/reportportal/client-javascript/blob/develop/lib/report-portal-client.js#L518, a promise is created, which can be rejected either from https://github.com/reportportal/client-javascript/blob/develop/lib/report-portal-client.js#L538 or from https://github.com/reportportal/client-javascript/blob/develop/lib/report-portal-client.js#L543. When that happens, an unhandled promise rejection is raised, which...
After running tests in the 'DEBUG' mode I see that we are getting link to the "launches" instead of debugs (from https://github.com/reportportal/client-javascript/blob/develop/lib/report-portal-client.js#L249 ) When I run tests in the playwright...
Introduce this feature through the client library to populate it to all agents out of the box.
Is this possible and would this be handled by client-javascript? I'm able to do so in a CI/CD pipeline by having a step that creates the launch then propagate the...
Hi When I use `reportportal/agent-js-mocha` alongside with `mocha-multi-reporters` I get the following error ``` Failed to load reporter: "@reportportal/agent-js-mocha" or "/Users/yacovgavrilov/ws/simplex/buy-checkout/@reportportal/agent-js-mocha": TypeError [ERR_INVALID_ARG_TYPE]: The "original" argument must be of type...
For a better developer experience
Hi, I have been trying to use this client-javascript in the context of a Qunit test situation, e.g. a Qunit javascript test file inside a browser (xxxx.html) ,but I am...
Is there a typescript version of this library so when I do `rpClient.` it shows me all the methods available?