Skip to content

Commit c43d89f

Browse files
committed
remove check for test runner installation, blocking python test runner
1 parent 0d5c2c8 commit c43d89f

File tree

3 files changed

+7
-11
lines changed

3 files changed

+7
-11
lines changed

lib/services/tutorials.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,6 @@ function _isTutorial(name) {
3838
return false;
3939
}
4040
var pathToTestRunner = path.join(window.coderoad.dir, 'node_modules', packageJson.config.testRunner);
41-
if (!exists_1.fileExists(pathToTestRunner)) {
42-
console.log("Error with " + name + ": " + packageJson.config.testRunner + " test runner not installed");
43-
return false;
44-
}
4541
return true;
4642
}
4743
function searchForTutorials(deps) {

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@
4040
"dependencies": {
4141
"classnames": "2.2.3",
4242
"highlights": "1.3.1",
43-
"lodash": "4.6.1",
43+
"lodash": "4.7.0",
4444
"marked": "0.3.5",
4545
"material-ui": "0.14.4",
46-
"react": "0.14.7",
47-
"react-dom": "0.14.7",
46+
"react": "0.14.8",
47+
"react-dom": "0.14.8",
4848
"react-redux": "4.4.1",
4949
"react-tap-event-plugin": "0.2.2",
5050
"redux": "3.3.1"

src/services/tutorials.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ function _isTutorial(name: string): boolean {
4242
return false;
4343
}
4444
let pathToTestRunner = path.join(window.coderoad.dir, 'node_modules', packageJson.config.testRunner);
45-
if (!fileExists(pathToTestRunner)) {
46-
console.log(`Error with ${name}: ${packageJson.config.testRunner} test runner not installed`);
47-
return false;
48-
}
45+
// if (!fileExists(pathToTestRunner)) {
46+
// console.log(`Error with ${name}: ${packageJson.config.testRunner} test runner not installed`);
47+
// return false;
48+
// }
4949
return true;
5050
}
5151

0 commit comments

Comments
 (0)