1.1 KiB
1.1 KiB
(Vague) Jasmine 2.0 Goals/(Guidelines)
- No globals!
- jasmine library is entirely inside
jasminenamespace - globals required for backwards compatibility should be added in
boot.js(EG, var describe = jasmine.getCurrentEnv().describe lives in boot.js)
- Don't use properties as getters. Use methods.
- Properties aren't encapsulated -- can be mutated, unsafe.
- Reporters get data objects (no methods).
- easier to refactor as needed
- More unit tests - fewer nasty integration tests
Remaining non-story-able work:
- Make a
TODOlist
Hard
- Finish killing Globals
- Guidlines: everything that isn't a CTOR should be closed inside
Env, and everything that is a CTOR needs to benewed inside theEnv - Spies
- jasmine.util should be util closure inside of env or something
- Guidlines: everything that isn't a CTOR should be closed inside
- Suites need to be unit-tested
- Remove Queue from Suite in favor of queuerunner refactoring
- Remover Runner in favor of a top-level Suite
- This means Env needs to
newaSuitefirst thing
- This means Env needs to
- get feature parity back on HTMLReporter
Easy
- Refactor
queuerunnerinto a new object - xdescribe / xit make skipped specs instead of empty blocks