From eb4a7af4646bd22406b9b48eac64d4e93bc99aba Mon Sep 17 00:00:00 2001 From: Nathan Boyd Date: Sun, 10 May 2015 00:22:33 -0400 Subject: [PATCH] init --- README.md | 2 +- desireds.js | 7 ++++--- test/test.js | 4 ++-- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index d0ea698..f2a4f23 100644 --- a/README.md +++ b/README.md @@ -1 +1 @@ -[![Build Status](https://travis-ci.org/nathan-boyd/report-generator.svg?branch=master)](https://travis-ci.org/nathan-boyd/report-generator) [![Coverage Status](https://coveralls.io/repos/nathan-boyd/report-generator/badge.svg?branch=master)](https://coveralls.io/r/nathan-boyd/report-generator?branch=master) [![Sauce Test Status](https://saucelabs.com/browser-matrix/nathan-boyd.svg)](https://saucelabs.com/u/nathan-boyd) +[![Build Status](https://travis-ci.org/nathan-boyd/report-generator.svg?branch=master)](https://travis-ci.org/nathan-boyd/report-generator) [![Coverage Status](https://coveralls.io/repos/nathan-boyd/report-generator/badge.svg?branch=master)](https://coveralls.io/r/nathan-boyd/report-generator?branch=master) [![Sauce Test Status](https://saucelabs.com/browser-matrix/nathan-boyd.svg?auth=9459ca78bd664316a0cf84e43a98658a)](https://saucelabs.com/u/nathan-boyd) diff --git a/desireds.js b/desireds.js index eeac1aa..2e2fe0a 100644 --- a/desireds.js +++ b/desireds.js @@ -1,7 +1,8 @@ 'use strict'; module.exports = { - chrome: {browserName: 'chrome'}, - firefox: {browserName: 'firefox'}, - explorer: {browserName: 'internet explorer'} + chrome: {browserName: 'chrome', Visibility:'public'}, + firefox: {browserName: 'firefox',visibility:'public'}, + explorer: {browserName: 'internet explorer',visibility:'public'} + }; diff --git a/test/test.js b/test/test.js index c14df1a..53cc76b 100644 --- a/test/test.js +++ b/test/test.js @@ -12,7 +12,7 @@ var wd = require('wd'); var reportGenerator = require('../lib/report-generator'); -var desired = {browserName: "chrome"}; +var desired = {browserName: "chrome", public:'public', "build": "build-1234"}; desired.name = 'example with ' + desired.browserName; desired.tags = ['tutorial']; @@ -26,7 +26,7 @@ if(/*process.env.SAUCE_USERNAME && process.env.SAUCE_ACCESS_KEY*/true){ describe('tutorial (' + desired.browserName + ')', function() { - this.timeout(5000); + this.timeout(10000); var browser; var allPassed = true;