From 96525fdec431f8d654ce0ea9b4f92c2a3ef9104b Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Sun, 16 Mar 2014 20:30:04 -0700 Subject: [PATCH] move sauce_browsers.yml into /grunt/; fixes #13065 --- Gruntfile.js | 2 +- bower.json | 3 ++- {test-infra => grunt}/sauce_browsers.yml | 0 3 files changed, 3 insertions(+), 2 deletions(-) rename {test-infra => grunt}/sauce_browsers.yml (100%) diff --git a/Gruntfile.js b/Gruntfile.js index 7d55f4089f..4cfcade9ff 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -390,7 +390,7 @@ module.exports = function (grunt) { build: process.env.TRAVIS_JOB_ID, concurrency: 10, urls: ['http://127.0.0.1:3000/js/tests/index.html'], - browsers: grunt.file.readYAML('test-infra/sauce_browsers.yml') + browsers: grunt.file.readYAML('grunt/sauce_browsers.yml') } } }, diff --git a/bower.json b/bower.json index 7590d787e3..965ed2f1c9 100644 --- a/bower.json +++ b/bower.json @@ -26,7 +26,8 @@ "composer.json", "CONTRIBUTING.md", "docs", - "js/tests" + "js/tests", + "test-infra" ], "dependencies": { "jquery": ">= 1.9.0" diff --git a/test-infra/sauce_browsers.yml b/grunt/sauce_browsers.yml similarity index 100% rename from test-infra/sauce_browsers.yml rename to grunt/sauce_browsers.yml -- 2.47.2