mathjs/test/expression/keywords.test.js

12 lines
285 B
JavaScript

// test keywords
var assert = require('assert'),
keywords = require('../../lib/expression/keywords');
describe('keywords', function() {
it('should return a map with reserved keywords', function() {
assert.deepEqual(Object.keys(keywords).sort(), ['end'].sort());
});
});