summaryrefslogtreecommitdiffstats
path: root/Gruntfile.js
diff options
context:
space:
mode:
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js13
1 files changed, 12 insertions, 1 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index 6cbef6e..09e4787 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -43,7 +43,7 @@ module.exports = function(grunt) {
packager: {
global: {
- type: 'global',
+ type: 'umd',
export: 'Handlebars',
files: [{
cwd: 'lib/',
@@ -145,6 +145,17 @@ module.exports = function(grunt) {
{browserName: 'internet explorer', version: 9, platform: 'Windows 7'}
]
}
+ },
+ sanity: {
+ options: {
+ build: process.env.TRAVIS_JOB_ID,
+ urls: ['http://localhost:9999/spec/umd.html?headless=true', 'http://localhost:9999/spec/amd-runtime?headless=true', 'http://localhost:9999/spec/umd-runtime.html?headless=true'],
+ detailedError: true,
+ concurrency: 2,
+ browsers: [
+ {browserName: 'chrome'}
+ ]
+ }
}
},