enabling first safari tests

This commit is contained in:
sebv
2014-05-14 10:31:45 +08:00
parent ce311913d5
commit 7c28f2cd31
3 changed files with 5 additions and 4 deletions

View File

@@ -3,7 +3,7 @@
var env = require('../../../helpers/env')
, setup = require("../../common/setup-base");
describe("safari - screenshot @skip-ci", function () {
describe("safari - screenshot", function () {
// TODO: enable safari tests on ci
describe('screenshots (' + env.DEVICE + ')', function () {
var driver;

View File

@@ -5,7 +5,7 @@ var env = require('../../../helpers/env')
, loadWebView = webviewHelper.loadWebView
, spinTitle = webviewHelper.spinTitle;
describe("safari - windows-frame @skip-ci", function () {
describe("safari - windows-frame", function () {
// TODO: enable safari tests on ci
describe('windows and frames (' + env.DEVICE + ')', function () {
var driver;

View File

@@ -177,9 +177,10 @@ if (env.SAUCE && env.TARBALL) {
}
// rest enf points
env.TEST_END_POINT = 'http://localhost:' + env.APPIUM_PORT + '/test/';
env.LOCAL_APPIUM_PORT = env.SAUCE? 4443 : env.APPIUM_PORT;
env.TEST_END_POINT = 'http://localhost:' + env.LOCAL_APPIUM_PORT + '/test/';
env.GUINEA_TEST_END_POINT = env.TEST_END_POINT + 'guinea-pig';
env.CHROME_TEST_END_POINT = 'http://10.0.2.2:' + env.APPIUM_PORT + '/test/';
env.CHROME_TEST_END_POINT = 'http://10.0.2.2:' + env.LOCAL_APPIUM_PORT + '/test/';
env.CHROME_GUINEA_TEST_END_POINT = env.CHROME_TEST_END_POINT + 'guinea-pig';
module.exports = env;