Use spec reporter to know which specs hang

This commit is contained in:
Antonio Scandurra
2016-08-12 12:22:36 +02:00
parent 88a2a37acf
commit fe8aabd908

View File

@@ -7,7 +7,7 @@ import {assert} from 'chai'
export default function (testPaths) {
global.assert = assert
const mocha = new Mocha({reporter: 'dot'})
const mocha = new Mocha({reporter: 'spec'})
for (let testPath of testPaths) {
if (fs.isDirectorySync(testPath)) {
for (let testFilePath of fs.listTreeSync(testPath)) {