mathjs/test/expression/keywords.test.js

10 lines
284 B
JavaScript

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