mirror of
https://github.com/josdejong/mathjs.git
synced 2025-12-08 19:46:04 +00:00
33 lines
549 B
JavaScript
33 lines
549 B
JavaScript
// test Node
|
|
var assert = require('assert'),
|
|
approx = require('../../../tools/approx'),
|
|
math = require('../../../index')();
|
|
|
|
describe('Node', function() {
|
|
|
|
it ('should create a Node', function () {
|
|
// TODO
|
|
});
|
|
|
|
it ('should evaluate a Node', function () {
|
|
// TODO
|
|
});
|
|
|
|
it ('should compile a Node', function () {
|
|
// TODO
|
|
});
|
|
|
|
it ('should find a Node', function () {
|
|
// TODO
|
|
});
|
|
|
|
it ('should match a Node', function () {
|
|
// TODO
|
|
});
|
|
|
|
it ('should stringify a Node', function () {
|
|
// TODO
|
|
});
|
|
|
|
});
|