mirror of
https://github.com/Karaka-Management/jsOMS.git
synced 2026-01-11 17:58:41 +00:00
13 lines
359 B
JavaScript
13 lines
359 B
JavaScript
describe('MathProcessorTest', function ()
|
|
{
|
|
"use strict";
|
|
|
|
describe('testEvaluation', function ()
|
|
{
|
|
it('Testing formula evaluation', function ()
|
|
{
|
|
expect(jsOMS.mathEvaluate('3 + 4 * 2 / ( 1 - 5 ) ^ 2 ^ 3 + 1.5')).toBeCloseTo(4.5, 2);
|
|
expect(jsOMS.mathEvaluate('invalid')).toBe(null);
|
|
});
|
|
});
|
|
}); |