chai/test/configuration.js
2012-02-25 01:33:59 -05:00

35 lines
982 B
JavaScript

if (!chai) {
var chai = require('..');
}
var assert = chai.assert;
function fooThrows () {
assert.equal('foo', 'bar');
}
suite('configuration', function () {
test('Assertion.includeStack is true, stack trace available', function () {
chai.Assertion.includeStack = true;
try {
fooThrows();
assert.ok(false, 'should not get here because error thrown');
} catch (err) {
if (typeof(err.stack) !== 'undefined') { // not all browsers support err.stack
assert.include(err.stack, 'at fooThrows', 'should have stack trace in error message');
}
}
});
test('Assertion.includeStack is false, stack trace not available', function () {
chai.Assertion.includeStack = false;
try {
fooThrows();
assert.ok(false, 'should not get here because error thrown');
} catch (err) {
assert.ok(!err.stack || err.stack.indexOf('at fooThrows') === -1, 'should not have stack trace in error message');
}
});
});