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

required-tokens.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: 6944cee40ce584e5fe4eb45e7f929a87ee8f6de0 (plain)
1
2
3
4
5
6
7
8
9
10
var assert = require('assert');
var describe = require('../..').describe;
var it = require('../..').it;

describe('using imported describe', function () {
  it('using imported it', function (done) {
    assert.ok(true);
    done();
  })
})