File: errors.js

package info (click to toggle)
node-chai 4.2.0%2Bds-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,292 kB
  • sloc: makefile: 79; sh: 36
file content (14 lines) | stat: -rw-r--r-- 220 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
if (!chai)
  var chai = require('../..');

var expect = chai.expect;

chai.config.includeStack = true;

suite('error display', function () {

  test('show error line', function () {
    expect(4).to.equal(2);
  });

});