rename __tests__ to tests to fix #20

This commit is contained in:
Alan Hamlett
2015-06-10 11:21:05 -07:00
parent 9d271188b1
commit 61b8a84945
7 changed files with 1 additions and 1 deletions

9
tests/preprocessor.js Normal file
View File

@@ -0,0 +1,9 @@
// preprocessor.js
var ReactTools = require('react-tools');
var to5 = require('6to5-jest').process;
module.exports = {
process: function(src, filename) {
return ReactTools.transform(to5(src, filename));
}
};