Signed-off-by: Antonio Scandurra <as-cii@github.com>
This commit is contained in:
Nathan Sobo 2016-08-11 08:16:18 -06:00 committed by Antonio Scandurra
parent d8b2a1f4b6
commit 5a8ab1a2b2
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
'use babel'
/** @babel */
import {dialog} from 'electron'
import FileRecoveryService from '../../src/main-process/file-recovery-service'

View File

@ -11,7 +11,7 @@ export default function (testPaths) {
for (let testPath of testPaths) {
if (fs.isDirectorySync(testPath)) {
for (let testFilePath of fs.listTreeSync(testPath)) {
if (/\.spec\.(coffee|js)$/.test(testFilePath)) {
if (/\.test\.(coffee|js)$/.test(testFilePath)) {
mocha.addFile(testFilePath)
}
}