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

test.js « mocha-2.2.5 « lib « tests - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 47de23e5e6b27d65d62f9379cced11abfc354def (plain)
1
2
3
4
5
6
7
8
9
function usedToBeAsync (cb) {
  cb()
}

it('test', function() {
  this.timeout(4294967296);
  usedToBeAsync(done)
});