From 6584d4c885d43cf80a481524f33db255935a06f3 Mon Sep 17 00:00:00 2001 From: Piotr Sarnacki Date: Thu, 5 Feb 2015 12:46:44 +0100 Subject: [PATCH] Don't test on safari locally, but test it on TravisCI --- testem.json | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/testem.json b/testem.json index e1b2d362..7cbdc33f 100644 --- a/testem.json +++ b/testem.json @@ -4,13 +4,13 @@ "launch_in_ci": [ "PhantomJS", "SL_chrome", - "SL_firefox" + "SL_firefox", + "SL_safari" ], "launch_in_dev": [ "PhantomJS", "Chrome", - "Firefox", - "Safari" + "Firefox" ], "launchers": { "SL_chrome": { @@ -38,6 +38,19 @@ "--u" ], "protocol": "browser" + }, + "SL_safari": { + "exe": "./node_modules/.bin/ember-cli-sauce", + "args": [ + "-b", + "safari", + "-p", + "Mac 10.10", + "--at", + "--no-ct", + "--u" + ], + "protocol": "browser" } } }