Add AMD tests to sauce tests

This commit is contained in:
kpdecker
2013-12-26 15:20:37 -06:00
parent 19f443f68e
commit 7151d15abb
3 changed files with 2129 additions and 2 deletions
+2 -2
View File
@@ -132,7 +132,7 @@ module.exports = function(grunt) {
all: {
options: {
build: process.env.TRAVIS_JOB_ID,
urls: ['http://localhost:9999/spec/?headless=true'],
urls: ['http://localhost:9999/spec/?headless=true', 'http://localhost:9999/spec/amd.html?headless=true'],
detailedError: true,
concurrency: 2,
browsers: [
@@ -162,7 +162,7 @@ module.exports = function(grunt) {
},
files: ['src/*', 'lib/**/*.js', 'spec/**/*.js'],
tasks: ['build', 'tests', 'test']
tasks: ['build', 'amd', 'tests', 'test']
}
}
});