material-motion-js icon indicating copy to clipboard operation
material-motion-js copied to clipboard

Add index.test.ts to each __tests__

Open appsforartists opened this issue 8 years ago • 0 comments

It would be nice if our Mocha output was grouped by package. I wonder if we should put an index.test.ts in each __tests__ whose body looks basically like this:

describe('streams-dom', 
  () => {
    require('./SomeTest.test.ts');
  }
);

Manually adding require for each new test would be gross though. Maybe we should write a utility that requires all its siblings and run it in each index:

describe('streams-dom', requireAllSiblings);

appsforartists avatar Dec 20 '16 22:12 appsforartists