You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Which testing framework do you want to use ?
Press tab to list possible options. Enter to move to the next question.
jasmine
Do you want to use Require.js ?
This will add Require.js plugin.
Press tab to list possible options. Enter to move to the next question.
no
Do you want to capture a browser automatically ?
Press tab to list possible options. Enter empty string to move to the next question.
Chrome
What is the location of your source and test files ?
You can use glob patterns, eg. "js/_.js" or "test/__/_Spec.js".
Enter empty string to move to the next question.
Should any of the files included by the previous patterns be excluded ?
You can use glob patterns, eg. "*/.swp".
Enter empty string to move to the next question.
Do you want Karma to watch all the files and run the tests on change ?
Press tab to list possible options.
yes
path.js:116
throw new TypeError('Arguments to path.resolve must be strings');
^
TypeError: Arguments to path.resolve must be strings
at Object.exports.resolve (path.js:116:15)
at C:\Typhoon\webserver\node_modules\karma\lib\init.js:361:31
at nextQuestion (C:\Typhoon\webserver\node_modules\karma\lib\init.js:241:7)
at onLine (C:\Typhoon\webserver\node_modules\karma\lib\init.js:211:14)
at Interface.EventEmitter.emit (events.js:95:17)
at Interface._onLine (readline.js:202:10)
at Interface._line (readline.js:531:8)
at Interface._ttyWrite (readline.js:760:14)
at ReadStream.onkeypress (readline.js:99:10)
at ReadStream.EventEmitter.emit (events.js:117:20)
C:\webserver>
Looked into this issue and it seems that if the original karma.conf.js or just create a file with the same name everything works ok!
Looking at the cli.js code processArgs function it looks like the following logic is not correct when an existing karma.conf.js does not exist. (options.configFile ends up being null).
...
var configFile = argv._.shift();
if (!configFile) {
// default config file (if exists)
if (fs.existsSync('./karma.conf.js')) {
configFile = './karma.conf.js';
} else if (fs.existsSync('./karma.conf.coffee')) {
configFile = './karma.conf.coffee';
}
}
Running Karma 0.10 on Windows 7:
Steps:
Output:
C:\webserver>karma init
Which testing framework do you want to use ?
Press tab to list possible options. Enter to move to the next question.
Looked into this issue and it seems that if the original karma.conf.js or just create a file with the same name everything works ok!
Looking at the cli.js code processArgs function it looks like the following logic is not correct when an existing karma.conf.js does not exist. (options.configFile ends up being null).
...
var configFile = argv._.shift();
if (!configFile) {
// default config file (if exists)
if (fs.existsSync('./karma.conf.js')) {
configFile = './karma.conf.js';
} else if (fs.existsSync('./karma.conf.coffee')) {
configFile = './karma.conf.coffee';
}
}
options.configFile = configFile ? path.resolve(configFile) : null;
return options;
};
The text was updated successfully, but these errors were encountered: