Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2,250 changes: 1,095 additions & 1,155 deletions package-lock.json

Large diffs are not rendered by default.

26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,24 +34,24 @@
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/register": "^7.9.0",
"@wdio/cli": "^5.18.7",
"@wdio/devtools-service": "^5.16.16",
"@wdio/jasmine-framework": "^5.18.6",
"@wdio/local-runner": "^5.18.7",
"@wdio/sauce-service": "^5.16.10",
"@wdio/selenium-standalone-service": "^5.16.10",
"@wdio/spec-reporter": "^5.18.7",
"@wdio/sync": "^5.18.7",
"@wdio/cli": "^6.1.3",
"@wdio/devtools-service": "^6.0.16",
"@wdio/jasmine-framework": "^6.1.3",
"@wdio/local-runner": "^6.1.3",
"@wdio/sauce-service": "^6.1.0",
"@wdio/selenium-standalone-service": "^6.0.16",
"@wdio/spec-reporter": "^6.0.16",
"@wdio/sync": "^6.1.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.3.0",
"devtools": "^5.18.7",
"babel-jest": "^25.4.0",
"devtools": "^6.1.3",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.2",
"fs-extra": "^9.0.0",
"jest": "^25.3.0",
"np": "^6.2.1",
"jest": "^25.4.0",
"np": "^6.2.2",
"rimraf": "^3.0.2",
"webdriverio": "^5.18.7"
"webdriverio": "^6.1.3"
},
"dependencies": {
"webdriver-image-comparison": "0.14.1"
Expand Down
57 changes: 39 additions & 18 deletions tests/configs/wdio.saucelabs.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const saveMethodFolderSpecs = join(process.cwd(), './tests/specs/saveMethodsFold
const checkMethodFolderSpecs = join(process.cwd(), './tests/specs/checkMethodsFolders.spec.js');
const deskSpecs = join(process.cwd(), './tests/specs/desktop.spec.js');
const mobileSpecs = join(process.cwd(), './tests/specs/mobile.spec.js');
const buildIdentifier = process.env.TRAVIS_JOB_NUMBER;
const buildIdentifier = process.env.TRAVIS_JOB_NUMBER || `Local build-${new Date().getTime()}`;
const defaultBrowserSauceOptions = {
build: buildIdentifier,
screenResolution: '1600x1200',
Expand Down Expand Up @@ -39,26 +39,47 @@ config.capabilities = [
deviceName: 'iPad Pro (12.9 inch) (2nd generation) Simulator',
platformVersion: '12.0',
platformName: 'IOS',
specs: [ mobileSpecs ],
specs: [mobileSpecs],
logName: 'iPadPro12.9.2nd',
build: buildIdentifier,
},
{
browserName: 'safari',
automationName: 'XCUITest',
deviceName: 'iPad (7th generation) Simulator',
platformVersion: '13.2',
platformName: 'IOS',
specs: [mobileSpecs],
logName: 'iPad13.2.7th',
build: buildIdentifier,
},
{
deviceName: 'iPad Air Simulator',
browserName: 'safari',
logName: 'iPadAirSimulator',
platformName: 'ios',
platformVersion: '12.2',
specs: [ mobileSpecs ],
specs: [mobileSpecs],
build: buildIdentifier,
},
// // @TODO: need to fix the homebar on the iPad pro, this needs to be fixed in the
// // webdriver-image-comparison module
// {
// deviceName: 'iPad Pro (12.9 inch) (3rd generation) Simulator',
// browserName: 'safari',
// logName: 'iPadPro12.9.3rdGeneration',
// platformName: 'ios',
// platformVersion: '13.2',
// specs: [ mobileSpecs ],
// build: buildIdentifier,
// },
{
browserName: 'safari',
deviceName: 'iPhone 8 Simulator',
logName: 'iPhone8Simulator',
platformName: 'ios',
platformVersion: '11.3',
specs: [ mobileSpecs ],
specs: [mobileSpecs],
build: buildIdentifier,
},
{
Expand All @@ -67,29 +88,29 @@ config.capabilities = [
logName: 'iPhoneXSimulator',
platformName: 'ios',
platformVersion: '12.2',
specs: [ mobileSpecs ],
specs: [mobileSpecs],
build: buildIdentifier,
},
{
browserName: 'safari',
deviceName: 'iPhone XS Simulator',
logName: 'iPhoneXsSimulator',
logName: 'iPhoneXsSimulator13.0',
platformName: 'ios',
platformVersion: '13.0',
specs: [ mobileSpecs ],
appiumVersion: '1.16.0',
specs: [mobileSpecs],
build: buildIdentifier,
},
{
browserName: 'safari',
deviceName: 'iPhone XS Simulator',
logName: 'iPhoneXsSimulator13.2',
platformName: 'ios',
platformVersion: '13.2',
appiumVersion: '1.16.0',
specs: [mobileSpecs],
build: buildIdentifier,
},
// // @TODO: need to fix the homebar on the iPad pro, this needs to be fixed in the
// // webdriver-image-comparison module
// {
// deviceName: 'iPad Pro (12.9 inch) (3rd generation) Simulator',
// browserName: 'safari',
// logName: 'iPadPro12.9.3rdGeneration',
// platformName: 'ios',
// platformVersion: '12.2',
// specs: [ mobileSpecs ],
// build: buildIdentifier,
// },

/**
* Android with native Webscreenshot
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.