Daniel Hood
Daniel Hood
👍 I have the same issue [Here is an example app that reproduces this issue](https://github.com/hooddanielc/reproduce-gulp-mocha-issue-156) Installing `[email protected]` fixes my issues.
@tkirda I tried that along with many other suggestion. I made an [example app that reproduces issue here](https://github.com/hooddanielc/reproduce-gulp-mocha-issue-156). This is the gulpfile.js ``` const register = require('babel-core/register'); const gulp =...
Sorry, I made a typo above >.< @tkirda the below works with [email protected] ``` const gulp = require('gulp'); const babel = require('gulp-babel'); const mocha = require('gulp-mocha'); gulp.task('test-with-suggested', () => {...
@miroslawmajka Have you tried deleting your node_modules folder and reinstalling with npm install?
@miroslawmajka your problem is almost certainty IPC related. I think it has something to do with this commit. https://github.com/sindresorhus/gulp-mocha/commit/3e551754a1b3ed090b77d77368f690a3c38614c0 . Multi platform IPC has given me a lot of problems...
@miroslawmajka what happens when you run gulp-mocha's unit test?
@miroslawmajka Please clone `gulp-mocha` outside of your project and run the tests. You shouldn't have to install any global modules. ``` git clone https://github.com/sindresorhus/gulp-mocha.git cd gulp-mocha npm i npm test...
I have a feeling this issue is caused by outdated global modules. Try adding your global modules to your package.json. npm might be doing some magic. Install gulp and mocha...
Do your tests typically take a really long time? What is the average time spent on completing test?