-
Notifications
You must be signed in to change notification settings - Fork 929
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #374 from adamwdraper/develop
Develop 1.5.4
- Loading branch information
Showing
63 changed files
with
4,153 additions
and
3,403 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,5 @@ Icon | |
# -------------------- | ||
# App Files | ||
# -------------------- | ||
node_modules/ | ||
node_modules/ | ||
.sass-cache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
module.exports = function(config) { | ||
var customLaunchers = { | ||
sl_chrome: { | ||
base: 'SauceLabs', | ||
browserName: 'chrome', | ||
version: '50', | ||
platform: 'OS X 10.11' | ||
}, | ||
sl_firefox: { | ||
base: 'SauceLabs', | ||
browserName: 'firefox', | ||
version: '45', | ||
platform: 'OS X 10.11' | ||
}, | ||
sl_ie: { | ||
base: 'SauceLabs', | ||
browserName: 'internet explorer', | ||
version: '11.103', | ||
platform: 'Windows 10' | ||
} | ||
}; | ||
|
||
process.env.SAUCE_USERNAME = 'numeraljs'; | ||
process.env.SAUCE_ACCESS_KEY = '5506968c-cfdc-4797-ba75-294620ad475f'; | ||
|
||
config.set({ | ||
reporters: [ | ||
'mocha', | ||
'saucelabs' | ||
], | ||
browserDisconnectTimeout : 10000, | ||
browserNoActivityTimeout: 120000, | ||
browserDisconnectTolerance : 1, | ||
browsers: Object.keys(customLaunchers), | ||
sauceLabs: { | ||
testName: 'Web App Unit Tests' | ||
}, | ||
customLaunchers: customLaunchers, | ||
singleRun: true | ||
}); | ||
}; |
Oops, something went wrong.