mirror of
https://github.com/josdejong/mathjs.git
synced 2026-01-18 14:59:29 +00:00
11 lines
285 B
JavaScript
11 lines
285 B
JavaScript
// test keywords
|
|
import assert from 'assert'
|
|
|
|
import { keywords } from '../../src/expression/keywords'
|
|
|
|
describe('keywords', function () {
|
|
it('should return a map with reserved keywords', function () {
|
|
assert.deepStrictEqual(Object.keys(keywords).sort(), ['end'].sort())
|
|
})
|
|
})
|