An open API service indexing awesome lists of open source software.

https://github.com/johnsonlee/leanengine-rmi

Unit Test Framework for LeanEngine
https://github.com/johnsonlee/leanengine-rmi

Last synced: about 1 year ago
JSON representation

Unit Test Framework for LeanEngine

Awesome Lists containing this project

README

          

# leanengine-rmi

Unit Test Framework for LeanEngine

## Installation

```
npm install leanengine-rmi
```

## Example

```
var rmi = require('leanengine-rmi');

rmi.invoke('hello', null, {
success : function(result) {
console.log(result);
},
error : function(e) {
console.error(e);
},
});
```