You will have to setup the state of your test in a beforeEach.
Some tips:
- if you want to keep stage specific data somewhere, I recommend a StageAssistant instead of a StageController (which Mojo owns).
- you can create a stage assistant and attach it (manually) in your before each
- if your data is really app-global instead of stage-global, consider using the AppAssistant or just window (global name space). You will have to do some hackery to use a specific global object in test v. the actual app, but you can do that with a spy
--dwf