Socket
Socket
Sign inDemoInstall

mjsunit.runner

Package Overview
Dependencies
0
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    mjsunit.runner

Command line mjsunit runner which provides an easy way to hook into mjsunit and start running tests immediately..


Weekly downloads
53
decreased by-19.7%
Maintainers
1
Install size
8.82 kB
Created
Weekly downloads
 

Readme

Source

Mjsunit test runner

Provides an easy way to hook into mjsunit and start running tests immediately.

Usage Example

myproject/test/core.js

exports.tests = {
  aFailingTest : function() {
    assertTrue(false);
  },
  aPassingTest : function() {
    assertFalse(false);
  }
};

myproject/test/runner.js

Note: if you want to use a custom variation of mjsunit, load it into the GLOBAL scope before requiring mjsunit.runner/lib/runner.

var suites = {
  "core"   : { 
    cases: require("./core").tests
    /*  Other options
    setUp    : function() { }, // called before every test
    tearDown : function() { }, // called after every test
    */
  }
};

require("mjsunit.runner/lib/runner").run(suites);

Running Tests

All suites

$ node myproject/test/runner.js

core      1/2                    50% passing
--------------------------------------------
TOTALS:   1/2                    50% passing

**All Suites (Verbose) ** $ node myproject/test/runner.js --verbose

Failure in core suite; method: aFailingTest
Failure: expected <true> found <false>
    at Object.assertEquals (/usr/local/lib/node/libraries/mjsunit.js:93:5)
    at /usr/local/lib/node/libraries/mjsunit.js:113:11
    at /path/to/myproject/test/core.js:3:5
    at /path/to/mjsunit.runner/lib/runner.js:36:25
    at /path/to/mjsunit.runner/lib/runner.js:50:38
    at Object.run (/path/to/mjsunit.runner/lib/runner.js:78:9)
    at Object.<anonymous> (/path/to/myproject/test/runner.js:7:38)
    at [object Object].<anonymous> (node.js:978:23)
    at [object Object].emitSuccess (node.js:241:15)
    at [object Object].<anonymous> (node.js:678:21)

core      1/2                    50% passing
--------------------------------------------
TOTALS:   1/2                    50% passing

Run a test in isolation

$ node myproject/test/runner.js --verbose --suite core --test aFailingTest

Failure in core suite; method: aFailingTest
Failure: expected <true> found <false>
    at Object.assertEquals (/usr/local/lib/node/libraries/mjsunit.js:93:5)
    at /usr/local/lib/node/libraries/mjsunit.js:113:11
    at /path/to/myproject/test/core.js:3:5
    at /path/to/mjsunit.runner/lib/runner.js:36:25
    at Object.run (/path/to/mjsunit.runner/lib/runner.js:61:57)
    at Object.<anonymous> (/path/to/myproject/test/runner.js:7:38)
    at [object Object].<anonymous> (node.js:978:23)
    at [object Object].emitSuccess (node.js:241:15)
    at [object Object].<anonymous> (node.js:678:21)
    at [object Object].emitSuccess (node.js:241:15)
 
1 of 1 failed (0% success)

Keywords

FAQs


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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc