Skip to content

Commit

Permalink
Testing-ci can't handle spaces in filenames?
Browse files Browse the repository at this point in the history
  • Loading branch information
subtleGradient committed Nov 6, 2013
1 parent 1393e55 commit 24ec78f
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,3 @@ docs/js/live_editor.js
docs/js/examples
docs/downloads
examples/shared/*.js

test/the files to test.generated.js
2 changes: 1 addition & 1 deletion grunt/tasks/populist.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module.exports = function() {
var config = this.data;
var done = this.async();

var theFilesToTestScript = fs.createWriteStream(__dirname + '/../../test/the files to test.generated.js');
var theFilesToTestScript = fs.createWriteStream(__dirname + '/../../test/the-files-to-test.generated.js');
theFilesToTestScript.write('// Generated by ');
theFilesToTestScript.write(JSON.stringify(__filename.split(/(?=grunt)/)[1]));
theFilesToTestScript.write(' at ');
Expand Down
2 changes: 1 addition & 1 deletion test/browser-runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
document.write('<script src="' + __dirname + '/../build/react.js' + cacheBust + '"><\/script>');
document.write('<script src="' + __dirname + '/../build/react-test.js' + cacheBust + '"><\/script>');
document.write('<script src="' + __dirname + '/../node_modules/jasmine-tapreporter/src/tapreporter.js' + cacheBust + '"><\/script>');
document.write('<script src="' + __dirname + '/../test/the files to test.generated.js' + cacheBust + '"><\/script>');
document.write('<script src="' + __dirname + '/../test/the-files-to-test.generated.js' + cacheBust + '"><\/script>');
document.write('<script src="' + __dirname + '/../test/jasmine-execute.js' + cacheBust + '"><\/script>');

}());

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 24ec78f

Please sign in to comment.