2.0.0 (2017-07-27)
Features
This changes the testFilePredicate() from optional to required. You must now supply the
proper testFilePredicate() that applies to your codebase. For example:
noTestShortcuts({
testFilePredicate: (filePath) => filePath.endsWith('.test.js'),
})Breaking Changes
- This may require updating usages of
noTestShortcuts()to ensure a
testFilePredicate()is passed into its configuration object parameter.
(1c9bfa16)