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

root.spec.js « acceptance « test « mocha-3.1.2 « lib « tests - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: abd8d4192e8af3ee155202842d7848d13758f710 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
'use strict';

var calls = [];

before(function () {
  calls.push('before');
});

describe('root', function () {
  it('should be a valid suite', function () {
    expect(calls).to.eql(['before']);
  });
});