Created
January 22, 2013 09:33
-
-
Save reebalazs/4593337 to your computer and use it in GitHub Desktop.
BusterJS how do I pass parameters to an extension?
This file contains 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
// | |
// Running the reference example: eat our own dogfood. | |
// | |
var libs = [ | |
'examples/testlib/jquery-1.6.2.min.js', | |
'examples/testlib/jquery.ui.widget.js' | |
]; | |
config.Dogfood = { | |
rootPath: "../", | |
environment: "browser", | |
libs: libs, | |
extensions: [require('../lib/extension.js')], | |
busterQunit: { | |
html: 'test.html' | |
}, | |
sources: [ | |
'examples/source.js' | |
], | |
tests: [ | |
'examples/test.js' | |
] | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment