File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 8888 console . log ( "Bundling client files with Browserify..." ) ;
8989 var b = browserify ( [
9090 "./src/client/client.js" ,
91- "./src/client/html_element.js"
91+ "./src/client/html_element.js" ,
92+ "./src/client/_svg_canvas_test.js" ,
93+ "./src/client/_client_test.js" ,
94+ "./src/client/_html_element_test.js"
9295// "./src/client/vendor/jquery-1.8.2.js",
9396// "./src/client/vendor/raphael-2.1.0.js"
9497 ] ) ;
Original file line number Diff line number Diff line change @@ -13,8 +13,7 @@ files = [
1313 "node_modules/expect.js/expect.js" ,
1414 "generated/build/client/vendor/jquery-1.8.2.js" ,
1515 "generated/build/client/vendor/raphael-2.1.0.js" ,
16- "generated/build/client/bundle.js" ,
17- "src/client/_*_test.js"
16+ "generated/build/client/bundle.js"
1817] ;
1918
2019
Original file line number Diff line number Diff line change @@ -22,14 +22,15 @@ Engineering Tasks:
2222 - Use Modernizr to eliminate duplicate browserSupportsTouchEvents() function (in _client_test.js & _dom_element_test.js)
2323
2424To Do on current task:
25- - Incrementally migrate our code from wwp global to browserify's require() calls
2625- Get tests working with require()
2726- Get index.html working with require()
2827- Figure out how to bundle vendor files
2928- What about deployment? (Punt?)
3029- Duplication between weewikipaint.js CONTENT_DIR and our Jakefile
3130- Do we want to copy src/server/ files to build directory?
3231- Fix Karma error messages using source maps
32+ - Unbundle tests from production code
33+ - Deal with 'can't find describe()' error in smoke test
3334
3435
3536Future ideas:
You can’t perform that action at this time.
0 commit comments