mathjs/test/math.test.js
2014-02-25 22:37:53 +01:00

84 lines
1.9 KiB
JavaScript

var assert = require('assert'),
mathjs = require('../index');
describe('factory', function() {
it('should create an instance of math.js with default configuration', function() {
var math = mathjs();
assert.strictEqual(typeof math, 'object');
assert.deepEqual(math.config(), {
matrix: 'matrix',
number: 'number',
decimals: 20
});
});
it('should create an instance of math.js with custom configuration', function() {
var math = mathjs({
matrix: 'array',
number: 'bignumber'
});
assert.strictEqual(typeof math, 'object');
assert.deepEqual(math.config(), {
matrix: 'array',
number: 'bignumber',
decimals: 20
});
});
it('two instances of math.js should be isolated from each other', function() {
var math1 = mathjs();
var math2 = mathjs({
matrix: 'array'
});
assert.notStrictEqual(math1, math2);
assert.notDeepEqual(math1.config(), math2.config());
assert.strictEqual(typeof math1.sqrt, 'function');
assert.strictEqual(typeof math2.sqrt, 'function');
assert.notStrictEqual(math1.sqrt, math2.sqrt);
});
it('should apply configuration using the config function', function() {
var math = mathjs();
var config = math.config();
assert.deepEqual(config, {
matrix: 'matrix',
number: 'number',
decimals: 20
});
math.config({
matrix: 'array',
number: 'bignumber',
decimals: 32
});
assert.deepEqual(math.config(), {
matrix: 'array',
number: 'bignumber',
decimals: 32
});
// restore the original config
math.config(config);
});
it('should throw an error when ES5 is not supported', function() {
var create = Object.create;
Object.create = undefined; // fake missing Object.create function
assert.throws(function () {
var math = mathjs();
}, /ES5 not supported/);
// restore Object.create
Object.create = create;
});
});