Welcome to mirror list, hosted at ThFree Co, Russian Federation.

issue-1327.fixture.js « regression « fixtures « integration « test « mocha-3.1.0 « lib « tests - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 43d555376293e58e06511487ac08f3156f283b10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
it('test 1', function() {
  console.log('testbody1');
  process.nextTick(function() {
    throw 'Too bad';
  });
});

it('test 2', function() {
  console.log('testbody2');
});

it('test 3', function() {
  console.log('testbody3');
  throw new Error('OUCH');
});