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

sanity.spec.js « sanity « 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: b918f1c4f92045c2a41ccac48bbc74b71052446b (plain)
1
2
3
4
5
6
7
8
9
'use strict';

var assert = require('assert');

describe('a production installation of Mocha', function () {
  it('should be able to execute a test', function () {
    assert.ok(true);
  });
});