forked from jamesshore/lets_code_javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtodo.txt
More file actions
44 lines (37 loc) · 1.74 KB
/
todo.txt
File metadata and controls
44 lines (37 loc) · 1.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
WeeWikiPaint
Minimum Marketable Features:
* single-user painting on home page
- collaborative painting
- wiki-fy the pages
- more complex painting?
- more collaborative features?
User Stories:
* Draw a line in response to iOS touch
- Deploy (including smoke test to ensure that div is in home page)
Engineering Tasks:
- Integrate
- Modify Lint settings for client global variables (off-camera)
- click tracking needs to account for margin, border, and padding
- figure out how to factor out common setup code
- test that em is converted px
To Do on current task:
- Use mouseleave event to draw line to edge when mouse moving quickly? (Thx Danny Jones, E67)
- Factor out common code between touch events and mouse events
- Is our client test doing too much--do we need to factor a new module or class?
Future ideas:
- Create 'fail fast' assertion code
- Abstract test framework? (Swap out a different framework to make sure abstraction works)
- Static checking of function parameters (rather than writing tests)
- Handle errors properly in server.js
- server.stop() waits for open connections to close (e.g., Firefox keeps open connection).
Make it forcibly close?
- Remove Node version duplication between package.json and Jakefile.js
- Fix httpGet duplication
- Automated npm rebuild ('npm rebuild' in jake.sh / jake.bat if .bin directory not found.)
- Ensure that every browser has same of number of tests running
- Automatically start Testacular (or provide friendlier error message when it isn't running?)
- Automate CI script
- Resolve npm 'extraneous' warning (due to package.json not reflecting what's in node_modules)
- Convert 'client' to be proper object rather than global singleton?
Notes:
- NodeUnit default reporter has minor display issue on Windows