working on improving tests

This commit is contained in:
Stephen Rodriguez
2015-07-14 13:14:23 -04:00
parent 906a5b68d3
commit e070b884c3
13 changed files with 36 additions and 10 deletions

7
tests/preprocesser.js Normal file
View File

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