mirror of
https://github.com/josdejong/mathjs.git
synced 2026-01-18 14:59:29 +00:00
10 lines
284 B
JavaScript
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())
|
|
})
|
|
})
|