
Security News
US Government Forces Anthropic to Pull Claude Fable Days After Launch
Anthropic says the directive cited national security concerns over a narrow jailbreak, but offered no specific technical details.
testcollab-cypress-plugin
Advanced tools
This package publishes your JSON test result file to TestCollab 2
NODE_ENV environment variable must have any one value - "development" , "staging", "production"
Install using: npm install -g testcollab-cypress-plugin
this will make "uploadTCRunResult" command available for execution
Run following command:
uploadTCRunResult --apiToken=<YOUR API TOKEN> --projectId=<PROJECT ID> --companyId=<COMPANY ID> --testPlanId=<TEST PLAN ID> --mochaJsonResult=<PATH TO mochawesome json FILE>
Notes: Your JSON file must follow mochawesome format.
In order for this package to map executed test cases with their corresponding Test Collab test cases ID, IDs should be appended to 'title' property of your 'tests' array in JSON as follows:
{
"stats": {
"suites": 1,
"tests": 6,
"passes": 2,
...
},
"results": [
{
"uuid": "..",
...
"suites": [
{
"uuid": "..",
"title": "Test suite",
...
"tests": [
{
"title": "id-1", <-- We parse ID from this
"fullTitle": "Sample test",
Download above sample file here
If you are using multiple configurations in your test run, then test plan configuration ID should be specified in similar way in 'suites' array under title property like this:
{
"stats": {
"suites": 1,
"tests": 6,
"passes": 2,
...
},
"results": [
{
"uuid": "..",
...
"suites": [
{
"uuid": "..",
"title": "TestSuite-1", <-- Test plan configuration ID
...
"tests": [
{
"title": "id-1", <-- Test Case ID
"fullTitle": "Sample test",
Download above sample file here
Test Collab website: testcollab.com
FAQs
This package publishes your JSON test result file to TestCollab 2
We found that testcollab-cypress-plugin demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Anthropic says the directive cited national security concerns over a narrow jailbreak, but offered no specific technical details.

Security News
A network of 152 Chrome live wallpaper extensions hid ad tracking and made extension-driven traffic look like Google search clicks.

Company News
Socket’s first CISO brings deep experience securing high-growth SaaS companies as open source supply chain threats accelerate.