leanengine-rmi

Unit test framework for LeanEngine

Usage no npm install needed!

<script type="module">
  import leanengineRmi from 'https://cdn.skypack.dev/leanengine-rmi';
</script>

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);
    },
});