Rename runMePlease to run

This commit is contained in:
Sam Nolan 2022-02-18 12:50:32 +11:00
parent 45017f3145
commit dbfeab6d84
2 changed files with 4 additions and 4 deletions

View File

@ -2,10 +2,10 @@ var js = require("../src/js/index.js");
describe("A simple result", () => {
test("mean(normal(5,2))", () => {
expect(js.runMePlease("mean(normal(5,2))")).toEqual({ tag: 'Ok', value: { hd: { NAME: 'Float', VAL: 5 }, tl: 0 } });
expect(js.run("mean(normal(5,2))")).toEqual({ tag: 'Ok', value: { hd: { NAME: 'Float', VAL: 5 }, tl: 0 } });
});
test("10+10", () => {
let foo = js.runMePlease("normal(5,2)");
let foo = js.run("normal(5,2)");
console.log(foo.value.hd.VAL)
expect(1).toEqual(1);
});

View File

@ -1,3 +1,3 @@
const ProgramEvaluator = require('../rescript/ProgramEvaluator.gen.js');
exports.runMePlease = ProgramEvaluator.runAll
exports.run = ProgramEvaluator.runAll