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

root.spec.js « acceptance « 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: 037e6a328aa28c0f28169c0c3fd04dd047d7ad28 (plain)
1
2
3
4
5
6
7
8
9
10
11
var calls = [];

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

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