New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

node-robotframework-test-runner

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-robotframework-test-runner

Robotframework for nodejs

latest
Source
npmnpm
Version
1.1.1
Version published
Maintainers
1
Created
Source

node-robotframework-test-runner

Robotframework TestCase Runner Written in NodeJS

Build Status

Usage - clone

  • Interactive CLI

    npm start

    run cli

    npm runtest

    run testcases

    npm clean

    cleanup report

    npm gentrendreport

    generate trend report by existing reports

Usage - as a npm module

  • Installation

    npm install node-robotframework-test-runner --save

  • How to use?

var TestRunner = require('node-robotframework-test-runner');
var pathOfSoftwareUnderTestingLibrary = './sut-lib.js';
var pathOfRobotframeworkTestCasesDirectory = './testcases-passed';
TestRunner.run(pathOfSoftwareUnderTestingLibrary, pathOfRobotframeworkTestCasesDirectory)
.then((data) => {
    console.log(data[0]);
    console.log('done!!!');
    process.exit();
}, (err) => {
    console.log(err);
    process.exit();
});

Or Reference repository: example-of-node-robotframework-test-project

References

Keywords

RobotFramework

FAQs

Package last updated on 12 May 2018

Did you know?

Socket

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.

Install

Related posts