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

issue-2417.fixture.js « regression « 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: e14aab09db953ceae3f2693925669e078d8c9381 (plain)
1
2
3
4
5
6
7
describe('outer describe', function() {
  describe.only('outer describe.only', function() {
    it.only('inner it.only', function() {
      // should run and exit without error
    });
  });
});