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

sanity.spec.js « sanity « 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: 59d5896515c9577f5c5e5d9e7e1348b32b4064b6 (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);
  });
});