diff --git a/protractor.saucelabs.config.js b/protractor.saucelabs.config.js index 4e4edc979..b1e695c05 100644 --- a/protractor.saucelabs.config.js +++ b/protractor.saucelabs.config.js @@ -13,8 +13,8 @@ exports.config = { // newSaucelabsCapability('safari', '9.0', 'OS X 10.11'), // newSaucelabsCapability('safari', '10.1', 'macOS 10.12'), // newSaucelabsCapability('safari', '11.0', 'macOS 10.12'), - newSaucelabsCapability('safari', '11.1', 'macOS 10.13'), - // newSaucelabsCapability('firefox', '78.0', 'Windows 7'), + // newSaucelabsCapability('safari', '11.1', 'macOS 10.13'), + newSaucelabsCapability('firefox', '78.0', 'Windows 7'), // newSaucelabsCapability('firefox', '58.0', 'Windows 11'), // newSaucelabsCapability('chrome', '67.0', 'Windows 10'), // newSaucelabsCapability('chrome', '54.0', 'OS X 10.11'), @@ -33,7 +33,7 @@ function newSaucelabsCapability(browserName, version, platform) { browserName, version, platform, - name: 'safari, 11.1, macOS 10.13 - in INP', + name: 'firefox, 78.0, Windows 7 - in LCP', 'tunnel-identifier': 'github-action-tunnel', build: process.env.GITHUB_RUN_NUMBER }; diff --git a/test/e2e/12_webvitalsAsCustomEvent/webvitalsAsCustomEvent.spec.js b/test/e2e/12_webvitalsAsCustomEvent/webvitalsAsCustomEvent.spec.js index 8968cada7..7fed8c2ce 100644 --- a/test/e2e/12_webvitalsAsCustomEvent/webvitalsAsCustomEvent.spec.js +++ b/test/e2e/12_webvitalsAsCustomEvent/webvitalsAsCustomEvent.spec.js @@ -38,11 +38,20 @@ describe('12_webvitalsAsCustomEvent', () => { cexpect(beacon.ty).to.equal('pl'); }); + expectOneMatching(beacons, beacon => { + cexpect(beacon.ty).to.equal('cus'); + cexpect(beacon.ts).to.be.a('string'); + cexpect(parseFloat(beacon.d)).to.be.above(3000); + cexpect(beacon.n).to.equal('instana-webvitals-LCP'); + cexpect(beacon.l).to.be.a('string'); + cexpect(beacon.pl).to.equal(pageLoadBeacon.t); + cexpect(beacon.m_id).to.match(/^v\d+(-\d+)+$/); + }); + // expectOneMatching(beacons, beacon => { // cexpect(beacon.ty).to.equal('cus'); // cexpect(beacon.ts).to.be.a('string'); - // cexpect(parseFloat(beacon.d)).to.be.above(3000); - // cexpect(beacon.n).to.equal('instana-webvitals-LCP'); + // cexpect(beacon.n).to.equal('instana-webvitals-FID'); // cexpect(beacon.l).to.be.a('string'); // cexpect(beacon.pl).to.equal(pageLoadBeacon.t); // cexpect(beacon.m_id).to.match(/^v\d+(-\d+)+$/); @@ -51,7 +60,7 @@ describe('12_webvitalsAsCustomEvent', () => { // expectOneMatching(beacons, beacon => { // cexpect(beacon.ty).to.equal('cus'); // cexpect(beacon.ts).to.be.a('string'); - // cexpect(beacon.n).to.equal('instana-webvitals-FID'); + // cexpect(beacon.n).to.equal('instana-webvitals-CLS'); // cexpect(beacon.l).to.be.a('string'); // cexpect(beacon.pl).to.equal(pageLoadBeacon.t); // cexpect(beacon.m_id).to.match(/^v\d+(-\d+)+$/); @@ -60,20 +69,11 @@ describe('12_webvitalsAsCustomEvent', () => { // expectOneMatching(beacons, beacon => { // cexpect(beacon.ty).to.equal('cus'); // cexpect(beacon.ts).to.be.a('string'); - // cexpect(beacon.n).to.equal('instana-webvitals-CLS'); + // cexpect(beacon.n).to.equal('instana-webvitals-INP'); // cexpect(beacon.l).to.be.a('string'); // cexpect(beacon.pl).to.equal(pageLoadBeacon.t); // cexpect(beacon.m_id).to.match(/^v\d+(-\d+)+$/); // }); - - expectOneMatching(beacons, beacon => { - cexpect(beacon.ty).to.equal('cus'); - cexpect(beacon.ts).to.be.a('string'); - cexpect(beacon.n).to.equal('instana-webvitals-INP'); - cexpect(beacon.l).to.be.a('string'); - cexpect(beacon.pl).to.equal(pageLoadBeacon.t); - cexpect(beacon.m_id).to.match(/^v\d+(-\d+)+$/); - }); }); }); });