Created
September 6, 2012 05:08
-
-
Save brian428/3651510 to your computer and use it in GitHub Desktop.
ExtJS app config file for Jasmine tests
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Ext.Loader.setConfig( enabled: true ) | |
Ext.application | |
autoCreateViewport: false | |
name: "JasmineExample" | |
launch: -> | |
# Create a reference to the ExtJS Application object so we can perform tests against it. | |
window.Application = @ | |
Ext.onReady -> | |
Deft.Injector.configure | |
companyStore: "JasmineExample.store.CompanyStore" | |
# Don't initiate the Jasmine spec runner until ExtJS is ready to go. | |
execJasmine() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment