Skip to content

Instantly share code, notes, and snippets.

@inossidabile
Created August 16, 2013 20:12
Show Gist options
  • Save inossidabile/6253144 to your computer and use it in GitHub Desktop.
Save inossidabile/6253144 to your computer and use it in GitHub Desktop.
grunt.initConfig
testem:
'core-jquery':
src: [
'bower_components/jquery/jquery.js',
'core/*.coffee'
],
options:
launch_in_dev: ['PhantomJS'],
launch_in_ci: ['PhantomJS', 'Chrome', 'Firefox', 'Safari', 'IE7', 'IE8', 'IE9']
'core-zepto':
src: [
'bower_components/zepto/zepto.js',
'core/*.coffee'
],
options:
launch_in_dev: ['PhantomJS'],
launch_in_ci: ['PhantomJS', 'Chrome', 'Firefox', 'Safari', 'IE7', 'IE8', 'IE9']
'environments-amd':
src: [
'bower_components/jquery/jquery.js',
'bower_components/requirejs/require.js',
'core/*.coffee'
],
options:
launch_in_dev: ['PhantomJS'],
launch_in_ci: ['PhantomJS', 'Chrome', 'Firefox', 'Safari', 'IE7', 'IE8', 'IE9']
'generators':
options:
launchers:
'Mocha': 'mocha ...'
launch_in_dev: ['Mocha']
launch_in_ci: ['Mocha']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment