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

passing.fixture.js « 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: df91b3e501cecd878840c014a059dec460a1ca70 (plain)
1
2
3
4
5
6
7
8
9
10
11
var assert = require('assert');

describe('suite', function() {
  it('test1', function() {
    assert(true);
  });

  it('test2', function() {
    assert(true);
  });
});