Directory structure :
- WebApiRole
- GulpFile.js
- test
- Karma.conf.js
Gulp code from GulpFile.js
gulp.task('test', function (done) {
karma.start({
configFile: _configFile: __dirname + '\\..\\test\\karma.conf.js',
singleRun: true
}, done);
});
So my problem going to the parent directory and access the karma.conf.js . For some reason the path is not get resolved with ..\\
to go back to the parent directory of WebApiRole . can someone point me in the right direction ?
I had to use
path
package to resolve this issue .