From ff99ccab0bfb96a23a371183ecc5b08ed90b973f Mon Sep 17 00:00:00 2001 From: Piotr Sarnacki Date: Thu, 5 Feb 2015 10:35:56 +0100 Subject: [PATCH] Add SauceLabs tests on firefox and chrome --- testem.json | 34 ++++++++++++++++++++++++++++++++-- 1 file changed, 32 insertions(+), 2 deletions(-) diff --git a/testem.json b/testem.json index 42a4ddb2..34cb656b 100644 --- a/testem.json +++ b/testem.json @@ -2,10 +2,40 @@ "framework": "qunit", "test_page": "tests/index.html?hidepassed", "launch_in_ci": [ - "PhantomJS" + "PhantomJS", + "SL_chrome", + "SL_firefox" ], "launch_in_dev": [ "PhantomJS", "Chrome" - ] + ], + "launchers": { + "SL_chrome": { + "exe": "./node_modules/.bin/ember-cli-sauce", + "args": [ + "-b", + "chrome", + "-p", + "Windows 8", + "--at", + "--no-ct", + "--u" + ], + "protocol": "browser" + }, + "SL_firefox": { + "exe": "./node_modules/.bin/ember-cli-sauce", + "args": [ + "-b", + "firefox", + "-p", + "Windows 8", + "--at", + "--no-ct", + "--u" + ], + "protocol": "browser" + } + } }