diff options
Diffstat (limited to 'node_modules/ava/lib/prefix-title.js')
-rw-r--r-- | node_modules/ava/lib/prefix-title.js | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/node_modules/ava/lib/prefix-title.js b/node_modules/ava/lib/prefix-title.js deleted file mode 100644 index a1c7b4f3b..000000000 --- a/node_modules/ava/lib/prefix-title.js +++ /dev/null @@ -1,21 +0,0 @@ -'use strict'; -const path = require('path'); - -module.exports = (file, base, separator) => { - let prefix = file - // Only replace this.base if it is found at the start of the path - .replace(base, (match, offset) => offset === 0 ? '' : match) - .replace(/\.spec/, '') - .replace(/\.test/, '') - .replace(/test-/g, '') - .replace(/\.js$/, '') - .split(path.sep) - .filter(p => p !== '__tests__') - .join(separator); - - if (prefix.length > 0) { - prefix += separator; - } - - return prefix; -}; |