Update to NPM version

This commit is contained in:
Lucas Patenaude
2024-04-11 04:23:19 -06:00
parent 886d197fa7
commit 6d6ef4f257
8225 changed files with 863748 additions and 1 deletions

106
ProjectSourceCode/node_modules/chai/sauce.browsers.js generated vendored Normal file
View File

@@ -0,0 +1,106 @@
/*!
* Chrome
*/
exports['SL_Chrome'] = {
base: 'SauceLabs'
, browserName: 'chrome'
};
/*!
* Firefox
*/
exports['SL_Firefox'] = {
base: 'SauceLabs'
, browserName: 'firefox'
};
exports['SL_Firefox_ESR'] = {
base: 'SauceLabs'
, browserName: 'firefox'
, version: 38
};
/*!
* Internet Explorer
*/
exports['SL_IE'] = {
base: 'SauceLabs'
, browserName: 'internet explorer'
};
/*!
* TODO: fails because of Uint8Array support
*
exports['SL_IE_Old'] = {
base: 'SauceLabs'
, browserName: 'internet explorer'
, version: 10
};
*/
exports['SL_Edge'] = {
base: 'SauceLabs'
, browserName: 'microsoftedge'
};
/*!
* Safari
*/
exports['SL_Safari'] = {
base: 'SauceLabs'
, browserName: 'safari'
, platform: 'Mac 10.11'
};
/*!
* iPhone
*/
/*!
* TODO: These take forever to boot or shut down. Causes timeout.
*
exports['SL_iPhone_6'] = {
base: 'SauceLabs'
, browserName: 'iphone'
, platform: 'Mac 10.8'
, version: '6'
};
exports['SL_iPhone_5-1'] = {
base: 'SauceLabs'
, browserName: 'iphone'
, platform: 'Mac 10.8'
, version: '5.1'
};
exports['SL_iPhone_5'] = {
base: 'SauceLabs'
, browserName: 'iphone'
, platform: 'Mac 10.6'
, version: '5'
};
*/
/*!
* Android
*/
/*!
* TODO: fails because of error serialization
*
exports['SL_Android_4'] = {
base: 'SauceLabs'
, browserName: 'android'
, platform: 'Linux'
, version: '4'
};
*/