From 3ba23be903683670772f0caa4c109db70f730190 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=CC=88rn=20Zaefferer?= Date: Tue, 16 Dec 2014 18:37:03 +0100 Subject: [PATCH] Build: Add config for browserstack-runner Uses a separate config file for IE8: BROWSERSTACK_JSON=browserstack-ie8.json browserstack-runner Ref #235 --- browserstack-ie8.json | 7 +++++++ browserstack.json | 17 +++++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 browserstack-ie8.json create mode 100644 browserstack.json diff --git a/browserstack-ie8.json b/browserstack-ie8.json new file mode 100644 index 000000000..46a571831 --- /dev/null +++ b/browserstack-ie8.json @@ -0,0 +1,7 @@ +{ + "test_framework": "qunit", + "test_path": [ "test/unit-es5-shim.html", "test/functional-es5-shim.html" ], + "browsers": [ + "ie_8" + ] +} diff --git a/browserstack.json b/browserstack.json new file mode 100644 index 000000000..cbffa87f1 --- /dev/null +++ b/browserstack.json @@ -0,0 +1,17 @@ +{ + "test_framework": "qunit", + "test_path": [ "test/unit.html", "test/functional.html" ], + "browsers": [ + "chrome_previous", + "chrome_latest", + "firefox_previous", + "firefox_latest", + "ie_9", + "ie_10", + "ie_11", + "opera_previous", + "opera_latest", + "safari_previous", + "safari_latest" + ] +}