Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathan Boyd committed May 12, 2015
1 parent 24bb32a commit eb4a7af
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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)
7 changes: 4 additions & 3 deletions desireds.js
Original file line number Diff line number Diff line change
@@ -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'}

};
4 changes: 2 additions & 2 deletions test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'];

Expand All @@ -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;
Expand Down

0 comments on commit eb4a7af

Please sign in to comment.