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

overspecified-async.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: 2844920379314c7211723b396f35a2cba0bcbf69 (plain)
1
2
3
4
5
6
7
8
describe('overspecified asynchronous resolution method', function() {
  it('should fail when multiple methods are used', function(done) {
    setTimeout(done, 0);

    // uncomment
    // return { then: function() {} };
  });
});