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

sort-alpha.fixture.js « options « 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: 7a5302994f6cd4c9116ee958c75b7966eecd9a49 (plain)
1
2
3
4
5
6
7
describe('alpha', function(){
  it('should be executed first', function(){
    if (global.beta) {
      throw new Error('alpha was not executed first');
    }
  });
});