diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 26bc3f82bd..85d184ed40 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -135,6 +135,7 @@ jobs: parallel: true group: 'skills-service tests' tag: "${{ github.workflow }}" + browser: chrome env: # pass the Dashboard record key as an environment variable CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} diff --git a/e2e-tests/cypress/e2e/accessibility_specs.js b/e2e-tests/cypress/e2e/accessibility_specs.js index e1eb032dc0..7afcda2527 100644 --- a/e2e-tests/cypress/e2e/accessibility_specs.js +++ b/e2e-tests/cypress/e2e/accessibility_specs.js @@ -620,40 +620,65 @@ describe('Accessibility Tests', () => { cy.customA11y(); }); - it('settings', () => { + + it('settings - profile', () => { cy.logout(); cy.login('root@skills.org', 'password'); cy.visit('/settings'); - cy.contains('First Name'); cy.injectAxe(); + cy.get('[data-cy="generalSettingsSave"]'); cy.customLighthouse(); cy.customA11y(); + }) - cy.get('[data-cy="nav-Preferences"]') - .click(); - cy.contains('Preferences'); + + it('settings - preferences', () => { + cy.logout(); + cy.login('root@skills.org', 'password'); + cy.visit('/settings/preferences'); + cy.injectAxe(); + cy.get('[data-cy="userPrefsSettingsSave"]'); cy.customLighthouse(); cy.customA11y(); + }) - cy.get('[data-cy=nav-Security]') - .click(); - cy.contains('Root Users Management'); + + it('settings - security', () => { + cy.logout(); + cy.login('root@skills.org', 'password'); + cy.visit('/settings/security'); + cy.injectAxe(); + cy.get('[data-cy="addUserBtn"]') cy.get('[data-cy="supervisorrm"]') .contains('There are no records to show'); cy.customLighthouse(); cy.customA11y(); + }) - cy.get('[data-cy=nav-Email]') - .click(); + it('settings - email', () => { + cy.logout(); + cy.login('root@skills.org', 'password'); + cy.visit('/settings/email'); + cy.injectAxe(); cy.contains('Email Connection Settings'); cy.contains('TLS Disabled'); cy.contains('Public URL'); + cy.get('[data-cy="emailSettingsTest"]') cy.customLighthouse(); cy.customA11y(); + }); - cy.get('[data-cy=nav-System]') - .click(); + it('settings - system', () => { + cy.intercept('GET', '/root/getSystemSettings') + .as('getSettings'); + cy.logout(); + cy.login('root@skills.org', 'password'); + cy.visit('/settings/system'); + cy.wait('@getSettings') cy.contains('Token Expiration'); + cy.get('[data-cy="resetTokenExpiration"]').should('have.value', '2H') + cy.get('[data-cy="saveSystemSettings"]') + cy.injectAxe(); cy.customLighthouse(); cy.customA11y(); }); diff --git a/e2e-tests/cypress/e2e/catalog/single_skill_and_catalog_spec.js b/e2e-tests/cypress/e2e/catalog/single_skill_and_catalog_spec.js index 0868dc95e9..a17843dd4a 100644 --- a/e2e-tests/cypress/e2e/catalog/single_skill_and_catalog_spec.js +++ b/e2e-tests/cypress/e2e/catalog/single_skill_and_catalog_spec.js @@ -52,8 +52,6 @@ describe('Single Skill and Catalog Tests', () => { .css('height', `${$el1.height()}px`); }); }); - - cy.matchSnapshotImageForElement('[data-cy=subjectCards]', 'Subject Cards one with disabled skill one without'); }); it('drill down to a skill after creation', () => { diff --git a/e2e-tests/cypress/e2e/discoverable_proj_invite_spec.js b/e2e-tests/cypress/e2e/discoverable_proj_invite_spec.js index 60c8a0b86d..5973de67cb 100644 --- a/e2e-tests/cypress/e2e/discoverable_proj_invite_spec.js +++ b/e2e-tests/cypress/e2e/discoverable_proj_invite_spec.js @@ -27,6 +27,15 @@ describe('Copy Invite URL Tests', () => { const proj1Share = `${proj1Url}?invited=true` it('retrieve share url', () => { + // this is needed to grant headless chrome permissions to copy-and-paste + cy.wrap(Cypress.automation('remote:debugger:protocol', { + command: 'Browser.grantPermissions', + params: { + permissions: ['clipboardReadWrite', 'clipboardSanitizedWrite'], + origin: window.location.origin, + }, + })) + cy.visit('/administrator/projects/proj1') cy.contains('No Subjects Yet') cy.location().then((loc) => { diff --git a/e2e-tests/cypress/e2e/my-progress_spec.js b/e2e-tests/cypress/e2e/my-progress_spec.js index c7979f4174..de7756af3a 100644 --- a/e2e-tests/cypress/e2e/my-progress_spec.js +++ b/e2e-tests/cypress/e2e/my-progress_spec.js @@ -377,40 +377,6 @@ describe('Navigation Tests', () => { .should('have.text', 'Project: This is project 1'); }); - it('material icons should be proper size', () => { - cy.loginAsRootUser(); - const globalBadge1 = { - badgeId: `globalBadge1`, - isEdit: false, - name: `Global Badge 1`, - originalBadgeId: '', - iconClass: 'mi mi-live-tv', - enabled: true, - description: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit.', - }; - cy.request('PUT', `/supervisor/badges/globalBadge1`, globalBadge1); - cy.assignSkillToGlobalBadge(1, 2); - cy.enableGlobalBadge(1, globalBadge1); - - cy.loginAsRootUser(); - cy.request('POST', `/api/projects/proj1/skills/skill2`, { - userId: Cypress.env('proxyUser'), - timestamp: yesterday - }); - cy.request('POST', `/api/projects/proj1/skills/skill2`, { - userId: Cypress.env('proxyUser'), - timestamp: testTime - }); - - cy.loginAsProxyUser(); - - cy.visit('/progress-and-rankings/'); - cy.get('[data-cy=viewBadges]') - .click(); - cy.matchSnapshotImageForElement('[data-cy=myBadges]', 'my-badges-material-icon', { - blackout: ['[data-cy=dateBadgeAchieved]'], - }); - }); it('My Badges filtering', () => { cy.loginAsRootUser(); diff --git a/e2e-tests/cypress/e2e/navigation_spec.js b/e2e-tests/cypress/e2e/navigation_spec.js index 1bf6770f4b..ebb359e420 100644 --- a/e2e-tests/cypress/e2e/navigation_spec.js +++ b/e2e-tests/cypress/e2e/navigation_spec.js @@ -165,16 +165,5 @@ describe('Navigation Tests', () => { .should('not.visible'); }); - it('navigation menu should be right aligned on small screen', () => { - // exhibited bug was that collapsing the menu before resizing the screen resulted in incorrect layout of the menu button - cy.visit('/administrator/projects/proj1'); - cy.get('[data-cy=navCollapseOrExpand]') - .click(); - cy.viewport('iphone-6'); - cy.get('[data-cy=nav-col]') - .should('be.visible'); - cy.matchSnapshotImageForElement('[data-cy="nav-col"]', 'small-screen-nav-menu'); - }); - }); diff --git a/e2e-tests/cypress/e2e/projects_spec.js b/e2e-tests/cypress/e2e/projects_spec.js index 6a84ff8b7a..ba5d764d2c 100644 --- a/e2e-tests/cypress/e2e/projects_spec.js +++ b/e2e-tests/cypress/e2e/projects_spec.js @@ -177,7 +177,6 @@ describe('Projects Tests', () => { cy.wait(2000); cy.get('[data-cy="pageHeader"] .container-fluid') .should('have.length', 1); - cy.matchSnapshotImageForElement('[data-cy="pageHeader"]'); cy.get('[data-cy=pageHeaderStat]') .first() diff --git a/e2e-tests/cypress/e2e/projects_table_spec.js b/e2e-tests/cypress/e2e/projects_table_spec.js index 509228bad1..346ad30a56 100644 --- a/e2e-tests/cypress/e2e/projects_table_spec.js +++ b/e2e-tests/cypress/e2e/projects_table_spec.js @@ -283,7 +283,8 @@ describe('Projects Table Tests', () => { /* focus is automatically getting switched back to the edit button which pre-emptively moves the cursor out of the text input field before before the full text has been entered depending on test timing */ - cy.wait(350); + cy.wait(600); + cy.get('[data-cy="projectsTable-projectFilter"]').should('be.enabled') cy.get('[data-cy="projectsTable-projectFilter"]') .type('Changed'); cy.get('[data-cy="projectsTable-filterBtn"]') diff --git a/e2e-tests/cypress/e2e/skills_spec.js b/e2e-tests/cypress/e2e/skills_spec.js index d8e3a45a36..7e64b38620 100644 --- a/e2e-tests/cypress/e2e/skills_spec.js +++ b/e2e-tests/cypress/e2e/skills_spec.js @@ -998,33 +998,6 @@ describe('Skills Tests', () => { cy.contains('http://fake/fake/fake.fake').should('be.visible'); }); - it('skill name should not wrap prematurely', () => { - cy.request('POST', `/admin/projects/proj1/subjects/subj1/skills/areallylongsubjectnamethatmaywraptoosoonSkill`, { - projectId: 'proj1', - subjectId: 'subj1', - skillId: 'areallylongsubjectnamethatmaywraptoosoonSkill', - name: `a really long subject name that may wrap too soon`, - type: 'Skill', - pointIncrement: 100, - numPerformToCompletion: 5, - pointIncrementInterval: 0, - numMaxOccurrencesIncrementInterval: 1, - description: "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", - version: 1, - helpUrl: 'http://doHelpOnThisSkill.com' - }); - cy.intercept('GET', '/admin/projects/proj1/subjects/subj1/skills/areallylongsubjectnamethatmaywraptoosoonSkill').as('loadSkill1'); - - // resolutions over 1280 are ignored in headless mode so we can only test at this resolution - cy.setResolution([1280, 900]); - cy.wait(200); - cy.visit('/administrator/projects/proj1/subjects/subj1/skills/areallylongsubjectnamethatmaywraptoosoonSkill/'); - cy.wait('@loadSkill1'); - - cy.matchSnapshotImageForElement('[data-cy=pageHeader]', 'No Premature Name Wrap') - }); - - it('skill help url with %20 in path retains %20 on edit', () => { cy.request('POST', `/admin/projects/proj1/subjects/subj1/skills/dummy`, { projectId: 'proj1', diff --git a/e2e-tests/cypress/e2e/skills_table_spec.js b/e2e-tests/cypress/e2e/skills_table_spec.js index 9a3f28249e..ef87149216 100644 --- a/e2e-tests/cypress/e2e/skills_table_spec.js +++ b/e2e-tests/cypress/e2e/skills_table_spec.js @@ -653,29 +653,5 @@ describe('Skills Table Tests', () => { }); - it('long skill id row controls wrap to the right', () => { - cy.viewport(1500, 900); - cy.log('creating new skill'); - cy.request('POST', '/admin/projects/proj1/subjects/subj1/skills/MaximumWidthPainBreakingControlLayoutForReal1Skill', { - projectId: 'proj1', - subjectId: "subj1", - skillId: "MaximumWidthPainBreakingControlLayoutForReal1Skill", - name: "MaximumWidthPainBreakingControlLayoutForReal1 1", - pointIncrement: '50', - numPerformToCompletion: '5' - }); - cy.intercept('GET', '/admin/projects/proj1/subjects/subj1/skills').as('loadSkills'); - - cy.log('visiting subj1 page'); - cy.visit('/administrator/projects/proj1/subjects/subj1'); - cy.wait('@loadSkills'); - - //wait for loading - cy.log('matchSnapshot'); - cy.matchSnapshotImageForElement('.skills-b-table tbody tr:first-of-type td:first-of-type', 'skillsTableFullsize') - cy.viewport(1000, 900); - cy.wait(400); - cy.matchSnapshotImageForElement('.skills-b-table tbody tr:first-of-type td:first-of-type', 'skillsTableSmaller') - }); }); diff --git a/e2e-tests/cypress/e2e/subjects_spec.js b/e2e-tests/cypress/e2e/subjects_spec.js index e3ce4565c7..cedeab0d6a 100644 --- a/e2e-tests/cypress/e2e/subjects_spec.js +++ b/e2e-tests/cypress/e2e/subjects_spec.js @@ -881,7 +881,6 @@ describe('Subjects Tests', () => { cy.get('[data-cy=pageHeaderStat]').first().invoke('width').then((val)=>{ cy.get('[data-cy=pageHeaderStat]').eq(1).invoke('width').should('eq', val); }); - cy.matchSnapshotImageForElement('[data-cy=pageHeader]', 'No Premature Name Wrap') }); it('subject modal shows Root Help Url when configured', () => { diff --git a/e2e-tests/cypress/snapshots/catalog/single_skill_and_catalog_spec.js/Subject Cards one with disabled skill one without.snap.png b/e2e-tests/cypress/snapshots/catalog/single_skill_and_catalog_spec.js/Subject Cards one with disabled skill one without.snap.png deleted file mode 100644 index 07046861f8..0000000000 Binary files a/e2e-tests/cypress/snapshots/catalog/single_skill_and_catalog_spec.js/Subject Cards one with disabled skill one without.snap.png and /dev/null differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-deps-chart_spec.js/CrossProject Dep with the same skillId.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-deps-chart_spec.js/CrossProject Dep with the same skillId.snap.png index bf1c05000b..1d17ef61d7 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-deps-chart_spec.js/CrossProject Dep with the same skillId.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-deps-chart_spec.js/CrossProject Dep with the same skillId.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-deps-chart_spec.js/Deps Chart - fully satisfied deps with cross-project skill.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-deps-chart_spec.js/Deps Chart - fully satisfied deps with cross-project skill.snap.png index 46c39de82b..0d6d63d011 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-deps-chart_spec.js/Deps Chart - fully satisfied deps with cross-project skill.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-deps-chart_spec.js/Deps Chart - fully satisfied deps with cross-project skill.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-deps-chart_spec.js/Deps Chart - fully satisfied deps.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-deps-chart_spec.js/Deps Chart - fully satisfied deps.snap.png index 608efdf748..8a66b0ff17 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-deps-chart_spec.js/Deps Chart - fully satisfied deps.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-deps-chart_spec.js/Deps Chart - fully satisfied deps.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-deps-chart_spec.js/Deps Chart - partially completed - 1 out 4.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-deps-chart_spec.js/Deps Chart - partially completed - 1 out 4.snap.png index 29a9c9687d..dee4b6b2fb 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-deps-chart_spec.js/Deps Chart - partially completed - 1 out 4.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-deps-chart_spec.js/Deps Chart - partially completed - 1 out 4.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-deps-chart_spec.js/Deps Chart - partially completed - 3 out 4.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-deps-chart_spec.js/Deps Chart - partially completed - 3 out 4.snap.png index 1bed18ad34..dd8d80d0f1 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-deps-chart_spec.js/Deps Chart - partially completed - 3 out 4.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-deps-chart_spec.js/Deps Chart - partially completed - 3 out 4.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-deps-chart_spec.js/InProjectDependency-child.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-deps-chart_spec.js/InProjectDependency-child.snap.png index 94a2a9ee9d..5977ba06a1 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-deps-chart_spec.js/InProjectDependency-child.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-deps-chart_spec.js/InProjectDependency-child.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-deps-chart_spec.js/InProjectDependency-parent.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-deps-chart_spec.js/InProjectDependency-parent.snap.png index ccec7c0cfd..2346a291fc 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-deps-chart_spec.js/InProjectDependency-parent.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-deps-chart_spec.js/InProjectDependency-parent.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-deps-chart_spec.js/LockedSkill-CrossProjectDependency.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-deps-chart_spec.js/LockedSkill-CrossProjectDependency.snap.png index 2b5f6f2d89..573adaa52d 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-deps-chart_spec.js/LockedSkill-CrossProjectDependency.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-deps-chart_spec.js/LockedSkill-CrossProjectDependency.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-deps-chart_spec.js/LockedSkill-ThatWasFullyAchieved.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-deps-chart_spec.js/LockedSkill-ThatWasFullyAchieved.snap.png index 083c2f96e6..a1335d7581 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-deps-chart_spec.js/LockedSkill-ThatWasFullyAchieved.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-deps-chart_spec.js/LockedSkill-ThatWasFullyAchieved.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-deps-chart_spec.js/LockedSkill-ThatWasPartiallyAchieved.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-deps-chart_spec.js/LockedSkill-ThatWasPartiallyAchieved.snap.png index f3e068c73b..aa76ca24f1 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-deps-chart_spec.js/LockedSkill-ThatWasPartiallyAchieved.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-deps-chart_spec.js/LockedSkill-ThatWasPartiallyAchieved.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-deps-chart_spec.js/Subject-WithLockedSkills-ThatWereFullyAchieved.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-deps-chart_spec.js/Subject-WithLockedSkills-ThatWereFullyAchieved.snap.png index 91e64ca76a..f034e4e74a 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-deps-chart_spec.js/Subject-WithLockedSkills-ThatWereFullyAchieved.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-deps-chart_spec.js/Subject-WithLockedSkills-ThatWereFullyAchieved.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-deps-chart_spec.js/Subject-WithLockedSkills-ThatWerePartiallyAchieved.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-deps-chart_spec.js/Subject-WithLockedSkills-ThatWerePartiallyAchieved.snap.png index f19bbb9049..42cda78e47 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-deps-chart_spec.js/Subject-WithLockedSkills-ThatWerePartiallyAchieved.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-deps-chart_spec.js/Subject-WithLockedSkills-ThatWerePartiallyAchieved.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-self_report_skills_spec.js/Self_Reportable Label - Themed.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-self_report_skills_spec.js/Self_Reportable Label - Themed.snap.png index e45d0f3f1c..2c1c0cd11a 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-self_report_skills_spec.js/Self_Reportable Label - Themed.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-self_report_skills_spec.js/Self_Reportable Label - Themed.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-self_report_skills_spec.js/Self_Reportable Label on Skill Overview - Themed.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-self_report_skills_spec.js/Self_Reportable Label on Skill Overview - Themed.snap.png index 07a70a5b12..750e2e1d12 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-self_report_skills_spec.js/Self_Reportable Label on Skill Overview - Themed.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-self_report_skills_spec.js/Self_Reportable Label on Skill Overview - Themed.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-self_report_skills_spec.js/Self_Reportable Label on Skill Overview.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-self_report_skills_spec.js/Self_Reportable Label on Skill Overview.snap.png index 845295e354..21c97cc361 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-self_report_skills_spec.js/Self_Reportable Label on Skill Overview.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-self_report_skills_spec.js/Self_Reportable Label on Skill Overview.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-self_report_skills_spec.js/Self_Reportable Label.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-self_report_skills_spec.js/Self_Reportable Label.snap.png index de36697936..c657f29ca3 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-self_report_skills_spec.js/Self_Reportable Label.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-self_report_skills_spec.js/Self_Reportable Label.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-skills_filtering_spec.js/Client Display Skills Filtering Tests -- Visual Test skills filter open.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-skills_filtering_spec.js/Client Display Skills Filtering Tests -- Visual Test skills filter open.snap.png index 0ef47d6ce7..ff92e015e7 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-skills_filtering_spec.js/Client Display Skills Filtering Tests -- Visual Test skills filter open.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-skills_filtering_spec.js/Client Display Skills Filtering Tests -- Visual Test skills filter open.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-skills_filtering_spec.js/Client Display Skills Filtering Tests -- Visual Test skills search and skills filter selected.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-skills_filtering_spec.js/Client Display Skills Filtering Tests -- Visual Test skills search and skills filter selected.snap.png index 06000497ea..0ed67a7575 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-skills_filtering_spec.js/Client Display Skills Filtering Tests -- Visual Test skills search and skills filter selected.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-skills_filtering_spec.js/Client Display Skills Filtering Tests -- Visual Test skills search and skills filter selected.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-skills_filtering_spec.js/Client Display Skills Filtering Tests -- Visual Tests filter selected and last viewed button present.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-skills_filtering_spec.js/Client Display Skills Filtering Tests -- Visual Tests filter selected and last viewed button present.snap.png index c8d6cf4208..a205a10275 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-skills_filtering_spec.js/Client Display Skills Filtering Tests -- Visual Tests filter selected and last viewed button present.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-skills_filtering_spec.js/Client Display Skills Filtering Tests -- Visual Tests filter selected and last viewed button present.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/Client Display Theme Components Tests -- ability to configure tile border.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/Client Display Theme Components Tests -- ability to configure tile border.snap.png index d381bd9d78..2a2c4635b9 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/Client Display Theme Components Tests -- ability to configure tile border.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/Client Display Theme Components Tests -- ability to configure tile border.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/Client Display Theme Components Tests -- point history chart - dark gray background customization.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/Client Display Theme Components Tests -- point history chart - dark gray background customization.snap.png index ac57f91626..512fd20c71 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/Client Display Theme Components Tests -- point history chart - dark gray background customization.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/Client Display Theme Components Tests -- point history chart - dark gray background customization.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/Client Display Theme Components Tests -- point history chart - line, label and gradient.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/Client Display Theme Components Tests -- point history chart - line, label and gradient.snap.png index 99c3ad1b33..9d28c4dbd2 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/Client Display Theme Components Tests -- point history chart - line, label and gradient.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/Client Display Theme Components Tests -- point history chart - line, label and gradient.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/Client Display Theme Components Tests -- theme info cards border overrides tile border.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/Client Display Theme Components Tests -- theme info cards border overrides tile border.snap.png index b9cbbe3272..e265447ebb 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/Client Display Theme Components Tests -- theme info cards border overrides tile border.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/Client Display Theme Components Tests -- theme info cards border overrides tile border.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/buttons-Back-darkTileBackground.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/buttons-Back-darkTileBackground.snap.png index 836fdc1bac..b1ba5f4945 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/buttons-Back-darkTileBackground.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/buttons-Back-darkTileBackground.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/buttons-Back.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/buttons-Back.snap.png index 41bfbf1ab5..ad7d2e11e1 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/buttons-Back.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/buttons-Back.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/buttons-badgesFilter-darkTileBackground.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/buttons-badgesFilter-darkTileBackground.snap.png index 0e918889d1..6acca60072 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/buttons-badgesFilter-darkTileBackground.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/buttons-badgesFilter-darkTileBackground.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/buttons-badgesFilter.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/buttons-badgesFilter.snap.png index fdb450bb4f..339a27fd4f 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/buttons-badgesFilter.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/buttons-badgesFilter.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/buttons-resetZoom.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/buttons-resetZoom.snap.png index c9bd8af0d5..4fc80c1824 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/buttons-resetZoom.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/buttons-resetZoom.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/buttons-selfReport-darkTileBackground.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/buttons-selfReport-darkTileBackground.snap.png index bcfea71d30..167f21e881 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/buttons-selfReport-darkTileBackground.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/buttons-selfReport-darkTileBackground.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/buttons-selfReport.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/buttons-selfReport.snap.png index 95f9901400..3cf8c63466 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/buttons-selfReport.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/buttons-selfReport.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/buttons-skillsFilter-darkTileBackground.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/buttons-skillsFilter-darkTileBackground.snap.png index de495c81fe..98341900e9 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/buttons-skillsFilter-darkTileBackground.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/buttons-skillsFilter-darkTileBackground.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/buttons-skillsFilter.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/buttons-skillsFilter.snap.png index 245fa7c4d9..4fe589fd7c 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/buttons-skillsFilter.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/buttons-skillsFilter.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/chartLabels-pointsHistory.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/chartLabels-pointsHistory.snap.png index 1b609097ad..85c81c2aeb 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/chartLabels-pointsHistory.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/chartLabels-pointsHistory.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/filterMenu-badges.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/filterMenu-badges.snap.png index 324917baf3..1891490b9e 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/filterMenu-badges.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/filterMenu-badges.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/filterMenu-skills.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/filterMenu-skills.snap.png index 1796ec3750..0454e293ee 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/filterMenu-skills.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/filterMenu-skills.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/infoCards-rank.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/infoCards-rank.snap.png index cf629692d7..209f857413 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/infoCards-rank.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/infoCards-rank.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/infoCards-skill.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/infoCards-skill.snap.png index a3f80b57e4..74a36035b9 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/infoCards-skill.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme-components_spec.js/infoCards-skill.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests - My rank themed where user opted-out.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests - My rank themed where user opted-out.snap.png index 614abbfe1e..b149848215 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests - My rank themed where user opted-out.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests - My rank themed where user opted-out.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests - Rank Overview of themed Leaderboard where user opted-out.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests - Rank Overview of themed Leaderboard where user opted-out.snap.png index 5c8e5d21e7..f5b5d33f32 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests - Rank Overview of themed Leaderboard where user opted-out.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests - Rank Overview of themed Leaderboard where user opted-out.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests - badge search and badge filter selected-achieved.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests - badge search and badge filter selected-achieved.snap.png index 30a86bc3bb..88059906a2 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests - badge search and badge filter selected-achieved.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests - badge search and badge filter selected-achieved.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests - badge search and badge filter selected-available.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests - badge search and badge filter selected-available.snap.png index 1819023cc3..bbd510035d 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests - badge search and badge filter selected-available.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests - badge search and badge filter selected-available.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests - left align breadcrumb.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests - left align breadcrumb.snap.png index 0e0cd87460..9b36d146ec 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests - left align breadcrumb.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests - left align breadcrumb.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests - theme page title card.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests - theme page title card.snap.png index c498b02628..fe56a6b7e5 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests - theme page title card.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests - theme page title card.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- Point History's open menu must respect tiles.background option.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- Point History's open menu must respect tiles.background option.snap.png index 3cdb9fd8ed..680210a54a 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- Point History's open menu must respect tiles.background option.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- Point History's open menu must respect tiles.background option.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- badge filter open.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- badge filter open.snap.png index 31cde9011f..b3e99e0703 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- badge filter open.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- badge filter open.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- skills filter open.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- skills filter open.snap.png index 0d60e042a2..056db4dfb5 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- skills filter open.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- skills filter open.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- skills group - 1 out 2 skills required.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- skills group - 1 out 2 skills required.snap.png index 3874a13aa9..b0eaaede09 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- skills group - 1 out 2 skills required.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- skills group - 1 out 2 skills required.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- skills group - partial completion.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- skills group - partial completion.snap.png index 09acf63a9d..4cecbee718 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- skills group - partial completion.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- skills group - partial completion.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- skills group.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- skills group.snap.png index 1803cc8ce0..830a45cd34 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- skills group.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- skills group.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- skills search and skills filter selected.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- skills search and skills filter selected.snap.png index 71e8a91e15..5b74983c2b 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- skills search and skills filter selected.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- skills search and skills filter selected.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - Empty Subject.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - Empty Subject.snap.png index 8ddd409646..b7bc6af545 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - Empty Subject.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - Empty Subject.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - No Subjects.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - No Subjects.snap.png index 876cc7bb0b..95ec853987 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - No Subjects.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - No Subjects.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - badge - default.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - badge - default.snap.png index c855afdef1..2c43104835 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - badge - default.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - badge - default.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - badge - ipad-2.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - badge - ipad-2.snap.png index 7b185d6940..3b5088e285 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - badge - ipad-2.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - badge - ipad-2.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - badge - iphone-6.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - badge - iphone-6.snap.png index 11ed847f83..a14739b9fb 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - badge - iphone-6.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - badge - iphone-6.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - badge details- default.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - badge details- default.snap.png index a45f913571..8aa325f5a6 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - badge details- default.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - badge details- default.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - badge details- ipad-2.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - badge details- ipad-2.snap.png index 7ef11508f4..cbffa0d1cb 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - badge details- ipad-2.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - badge details- ipad-2.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - badge details- iphone-6.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - badge details- iphone-6.snap.png index f51b7decd2..26278458b5 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - badge details- iphone-6.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - badge details- iphone-6.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - new version notification - default.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - new version notification - default.snap.png index 01f188150a..72e4ca833b 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - new version notification - default.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - new version notification - default.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - new version notification - ipad-2.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - new version notification - ipad-2.snap.png index 8f86ae23ea..b84f0a14e6 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - new version notification - ipad-2.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - new version notification - ipad-2.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - new version notification - iphone-6.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - new version notification - iphone-6.snap.png index 3c88b86b38..07b423280d 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - new version notification - iphone-6.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - new version notification - iphone-6.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - project overview - default.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - project overview - default.snap.png index 302dd75e78..2bd3503b89 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - project overview - default.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - project overview - default.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - project overview - ipad-2.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - project overview - ipad-2.snap.png index 1beef52983..5177184200 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - project overview - ipad-2.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - project overview - ipad-2.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - project overview - iphone-6.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - project overview - iphone-6.snap.png index b6215b82b2..d3ae39c40d 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - project overview - iphone-6.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - project overview - iphone-6.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - project rank - default.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - project rank - default.snap.png index 8b75a8eeb5..c12824ac09 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - project rank - default.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - project rank - default.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - project rank - ipad-2.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - project rank - ipad-2.snap.png index 307b6df0d8..a3e5f34ab8 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - project rank - ipad-2.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - project rank - ipad-2.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - project rank - iphone-6.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - project rank - iphone-6.snap.png index f39ae24066..6d67a45f61 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - project rank - iphone-6.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - project rank - iphone-6.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - skill details - default.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - skill details - default.snap.png index c4950b8968..ac97863ef7 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - skill details - default.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - skill details - default.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - skill details - ipad-2.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - skill details - ipad-2.snap.png index 29b377a8e2..749451a8b7 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - skill details - ipad-2.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - skill details - ipad-2.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - skill details - iphone-6.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - skill details - iphone-6.snap.png index e4c4771074..ed30d640ec 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - skill details - iphone-6.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - skill details - iphone-6.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - skill details with deps - default.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - skill details with deps - default.snap.png index e7d3232ab8..d2ae487e6f 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - skill details with deps - default.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - skill details with deps - default.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - skill details with deps - ipad-2.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - skill details with deps - ipad-2.snap.png index 76047e8cb0..ac0ef44c50 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - skill details with deps - ipad-2.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - skill details with deps - ipad-2.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - skill details with deps - iphone-6.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - skill details with deps - iphone-6.snap.png index 8530a9463b..856d4d7ecd 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - skill details with deps - iphone-6.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - skill details with deps - iphone-6.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - subject overview - default.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - subject overview - default.snap.png index 5767657ab2..efec1d40a6 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - subject overview - default.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - subject overview - default.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - subject overview - ipad-2.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - subject overview - ipad-2.snap.png index 210419339d..712ced977b 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - subject overview - ipad-2.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - subject overview - ipad-2.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - subject overview - iphone-6.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - subject overview - iphone-6.snap.png index 7ae4f50ad0..29a7a177f0 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - subject overview - iphone-6.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - subject overview - iphone-6.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - subject overview with skill details - default.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - subject overview with skill details - default.snap.png index fdb7df1047..4ddf20fa64 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - subject overview with skill details - default.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - subject overview with skill details - default.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - subject overview with skill details - ipad-2.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - subject overview with skill details - ipad-2.snap.png index 8dfe1a2e04..fa005e39e5 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - subject overview with skill details - ipad-2.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - subject overview with skill details - ipad-2.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - subject overview with skill details - iphone-6.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - subject overview with skill details - iphone-6.snap.png index d7512f1e82..a9e9287056 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - subject overview with skill details - iphone-6.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display-theme_spec.js/Client Display Tests -- test theming - subject overview with skill details - iphone-6.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display_catalog_skills_spec.js/catalog imported skill visual regression - skill details themed.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display_catalog_skills_spec.js/catalog imported skill visual regression - skill details themed.snap.png index ddc618fc9d..f973ce0065 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display_catalog_skills_spec.js/catalog imported skill visual regression - skill details themed.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display_catalog_skills_spec.js/catalog imported skill visual regression - skill details themed.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display_catalog_skills_spec.js/catalog imported skill visual regression - skill details.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display_catalog_skills_spec.js/catalog imported skill visual regression - skill details.snap.png index 4d162e3858..cd8e4d3149 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display_catalog_skills_spec.js/catalog imported skill visual regression - skill details.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display_catalog_skills_spec.js/catalog imported skill visual regression - skill details.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display_catalog_skills_spec.js/catalog imported skill visual regression - skill preview themed.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display_catalog_skills_spec.js/catalog imported skill visual regression - skill preview themed.snap.png index 573d2c2dae..7542a188da 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display_catalog_skills_spec.js/catalog imported skill visual regression - skill preview themed.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display_catalog_skills_spec.js/catalog imported skill visual regression - skill preview themed.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display_catalog_skills_spec.js/catalog imported skill visual regression - skill preview.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display_catalog_skills_spec.js/catalog imported skill visual regression - skill preview.snap.png index 1cfacf493e..66bb2c13f6 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display_catalog_skills_spec.js/catalog imported skill visual regression - skill preview.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display_catalog_skills_spec.js/catalog imported skill visual regression - skill preview.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display_point_history_chart_spec.js/Client Display Point History Tests -- levels achieved on subsequent days with many days in the timeline.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display_point_history_chart_spec.js/Client Display Point History Tests -- levels achieved on subsequent days with many days in the timeline.snap.png index 22ad7fd18e..a5025b3896 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display_point_history_chart_spec.js/Client Display Point History Tests -- levels achieved on subsequent days with many days in the timeline.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display_point_history_chart_spec.js/Client Display Point History Tests -- levels achieved on subsequent days with many days in the timeline.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display_point_history_chart_spec.js/Client Display Point History Tests -- rapid growth of points af start followed by no activity.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display_point_history_chart_spec.js/Client Display Point History Tests -- rapid growth of points af start followed by no activity.snap.png index 709692952c..5b61f4dd0e 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display_point_history_chart_spec.js/Client Display Point History Tests -- rapid growth of points af start followed by no activity.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display_point_history_chart_spec.js/Client Display Point History Tests -- rapid growth of points af start followed by no activity.snap.png differ diff --git a/e2e-tests/cypress/snapshots/client-display/client-display_point_history_chart_spec.js/Client Display Point History Tests -- subject rapid growth of points af start followed by no activity.snap.png b/e2e-tests/cypress/snapshots/client-display/client-display_point_history_chart_spec.js/Client Display Point History Tests -- subject rapid growth of points af start followed by no activity.snap.png index c9f9e4273f..af59cc0315 100644 Binary files a/e2e-tests/cypress/snapshots/client-display/client-display_point_history_chart_spec.js/Client Display Point History Tests -- subject rapid growth of points af start followed by no activity.snap.png and b/e2e-tests/cypress/snapshots/client-display/client-display_point_history_chart_spec.js/Client Display Point History Tests -- subject rapid growth of points af start followed by no activity.snap.png differ diff --git a/e2e-tests/cypress/snapshots/metrics/multipleProjectMetrics_spec.js/Project definitions comparison - Number of Badges chart.snap.png b/e2e-tests/cypress/snapshots/metrics/multipleProjectMetrics_spec.js/Project definitions comparison - Number of Badges chart.snap.png index 4c12cded59..3dbdc227b2 100644 Binary files a/e2e-tests/cypress/snapshots/metrics/multipleProjectMetrics_spec.js/Project definitions comparison - Number of Badges chart.snap.png and b/e2e-tests/cypress/snapshots/metrics/multipleProjectMetrics_spec.js/Project definitions comparison - Number of Badges chart.snap.png differ diff --git a/e2e-tests/cypress/snapshots/metrics/multipleProjectMetrics_spec.js/Project definitions comparison - Number of Skills chart.snap.png b/e2e-tests/cypress/snapshots/metrics/multipleProjectMetrics_spec.js/Project definitions comparison - Number of Skills chart.snap.png index b15c72c81b..3f902f8b94 100644 Binary files a/e2e-tests/cypress/snapshots/metrics/multipleProjectMetrics_spec.js/Project definitions comparison - Number of Skills chart.snap.png and b/e2e-tests/cypress/snapshots/metrics/multipleProjectMetrics_spec.js/Project definitions comparison - Number of Skills chart.snap.png differ diff --git a/e2e-tests/cypress/snapshots/metrics/multipleProjectMetrics_spec.js/Project definitions comparison - Number of Subjects chart.snap.png b/e2e-tests/cypress/snapshots/metrics/multipleProjectMetrics_spec.js/Project definitions comparison - Number of Subjects chart.snap.png index aef1c2ce33..4d46e3043c 100644 Binary files a/e2e-tests/cypress/snapshots/metrics/multipleProjectMetrics_spec.js/Project definitions comparison - Number of Subjects chart.snap.png and b/e2e-tests/cypress/snapshots/metrics/multipleProjectMetrics_spec.js/Project definitions comparison - Number of Subjects chart.snap.png differ diff --git a/e2e-tests/cypress/snapshots/metrics/multipleProjectMetrics_spec.js/Project definitions comparison - Total Available Points.snap.png b/e2e-tests/cypress/snapshots/metrics/multipleProjectMetrics_spec.js/Project definitions comparison - Total Available Points.snap.png index 38f093405f..d1f8e255f8 100644 Binary files a/e2e-tests/cypress/snapshots/metrics/multipleProjectMetrics_spec.js/Project definitions comparison - Total Available Points.snap.png and b/e2e-tests/cypress/snapshots/metrics/multipleProjectMetrics_spec.js/Project definitions comparison - Total Available Points.snap.png differ diff --git a/e2e-tests/cypress/snapshots/metrics/projectMetrics_projects_spec.js/Metrics Tests -- projects - Distinct number of users over time - one days.snap.png b/e2e-tests/cypress/snapshots/metrics/projectMetrics_projects_spec.js/Metrics Tests -- projects - Distinct number of users over time - one days.snap.png index 1436826bd7..91779f8d99 100644 Binary files a/e2e-tests/cypress/snapshots/metrics/projectMetrics_projects_spec.js/Metrics Tests -- projects - Distinct number of users over time - one days.snap.png and b/e2e-tests/cypress/snapshots/metrics/projectMetrics_projects_spec.js/Metrics Tests -- projects - Distinct number of users over time - one days.snap.png differ diff --git a/e2e-tests/cypress/snapshots/metrics/projectMetrics_subjects_spec.js/Metrics Tests -- subjects - num users per level - empty.snap.png b/e2e-tests/cypress/snapshots/metrics/projectMetrics_subjects_spec.js/Metrics Tests -- subjects - num users per level - empty.snap.png index d5b96fddf3..59421e9169 100644 Binary files a/e2e-tests/cypress/snapshots/metrics/projectMetrics_subjects_spec.js/Metrics Tests -- subjects - num users per level - empty.snap.png and b/e2e-tests/cypress/snapshots/metrics/projectMetrics_subjects_spec.js/Metrics Tests -- subjects - num users per level - empty.snap.png differ diff --git a/e2e-tests/cypress/snapshots/metrics/projectMetrics_subjects_spec.js/Metrics Tests -- subjects - num users per level over time - not subjects.snap.png b/e2e-tests/cypress/snapshots/metrics/projectMetrics_subjects_spec.js/Metrics Tests -- subjects - num users per level over time - not subjects.snap.png index fd44d614fe..40b377096d 100644 Binary files a/e2e-tests/cypress/snapshots/metrics/projectMetrics_subjects_spec.js/Metrics Tests -- subjects - num users per level over time - not subjects.snap.png and b/e2e-tests/cypress/snapshots/metrics/projectMetrics_subjects_spec.js/Metrics Tests -- subjects - num users per level over time - not subjects.snap.png differ diff --git a/e2e-tests/cypress/snapshots/metrics/projectMetrics_subjects_spec.js/Metrics Tests -- subjects - num users per level over time - subject has no data.snap.png b/e2e-tests/cypress/snapshots/metrics/projectMetrics_subjects_spec.js/Metrics Tests -- subjects - num users per level over time - subject has no data.snap.png index bee7c6f2ae..6e0e5ccfd2 100644 Binary files a/e2e-tests/cypress/snapshots/metrics/projectMetrics_subjects_spec.js/Metrics Tests -- subjects - num users per level over time - subject has no data.snap.png and b/e2e-tests/cypress/snapshots/metrics/projectMetrics_subjects_spec.js/Metrics Tests -- subjects - num users per level over time - subject has no data.snap.png differ diff --git a/e2e-tests/cypress/snapshots/metrics/skillMetrics_spec.js/Metrics Tests - Skills -- applied skill events over time.snap.png b/e2e-tests/cypress/snapshots/metrics/skillMetrics_spec.js/Metrics Tests - Skills -- applied skill events over time.snap.png index bd4281d62a..44b1360e6d 100644 Binary files a/e2e-tests/cypress/snapshots/metrics/skillMetrics_spec.js/Metrics Tests - Skills -- applied skill events over time.snap.png and b/e2e-tests/cypress/snapshots/metrics/skillMetrics_spec.js/Metrics Tests - Skills -- applied skill events over time.snap.png differ diff --git a/e2e-tests/cypress/snapshots/metrics/skillMetrics_spec.js/numUsersPostAchievement.snap.png b/e2e-tests/cypress/snapshots/metrics/skillMetrics_spec.js/numUsersPostAchievement.snap.png index d0b63b3735..c6f13f90ae 100644 Binary files a/e2e-tests/cypress/snapshots/metrics/skillMetrics_spec.js/numUsersPostAchievement.snap.png and b/e2e-tests/cypress/snapshots/metrics/skillMetrics_spec.js/numUsersPostAchievement.snap.png differ diff --git a/e2e-tests/cypress/snapshots/metrics/skillMetrics_spec.js/postAchievementUserList.snap.png b/e2e-tests/cypress/snapshots/metrics/skillMetrics_spec.js/postAchievementUserList.snap.png deleted file mode 100644 index 25761dc31e..0000000000 Binary files a/e2e-tests/cypress/snapshots/metrics/skillMetrics_spec.js/postAchievementUserList.snap.png and /dev/null differ diff --git a/e2e-tests/cypress/snapshots/metrics/subjectMetrics_spec.js/Metrics Tests - Subject -- level breakdown.snap.png b/e2e-tests/cypress/snapshots/metrics/subjectMetrics_spec.js/Metrics Tests - Subject -- level breakdown.snap.png index c78c19b130..9c9811bcf1 100644 Binary files a/e2e-tests/cypress/snapshots/metrics/subjectMetrics_spec.js/Metrics Tests - Subject -- level breakdown.snap.png and b/e2e-tests/cypress/snapshots/metrics/subjectMetrics_spec.js/Metrics Tests - Subject -- level breakdown.snap.png differ diff --git a/e2e-tests/cypress/snapshots/metrics/subjectMetrics_spec.js/Metrics Tests - Subject -- subject users per day - with user counts.snap.png b/e2e-tests/cypress/snapshots/metrics/subjectMetrics_spec.js/Metrics Tests - Subject -- subject users per day - with user counts.snap.png index 62042e2ca0..6b72dfd40d 100644 Binary files a/e2e-tests/cypress/snapshots/metrics/subjectMetrics_spec.js/Metrics Tests - Subject -- subject users per day - with user counts.snap.png and b/e2e-tests/cypress/snapshots/metrics/subjectMetrics_spec.js/Metrics Tests - Subject -- subject users per day - with user counts.snap.png differ diff --git a/e2e-tests/cypress/snapshots/projects_spec.js/Projects Tests -- Project stats should all be the same size when they wrap.snap.png b/e2e-tests/cypress/snapshots/projects_spec.js/Projects Tests -- Project stats should all be the same size when they wrap.snap.png deleted file mode 100644 index 735dfe3816..0000000000 Binary files a/e2e-tests/cypress/snapshots/projects_spec.js/Projects Tests -- Project stats should all be the same size when they wrap.snap.png and /dev/null differ diff --git a/e2e-tests/cypress/snapshots/skills-display-integration_spec.js/self reporting modal positioning.snap.png b/e2e-tests/cypress/snapshots/skills-display-integration_spec.js/self reporting modal positioning.snap.png index 1c83c9db68..3afcc82fc2 100644 Binary files a/e2e-tests/cypress/snapshots/skills-display-integration_spec.js/self reporting modal positioning.snap.png and b/e2e-tests/cypress/snapshots/skills-display-integration_spec.js/self reporting modal positioning.snap.png differ diff --git a/e2e-tests/cypress/snapshots/skills-display-integration_spec.js/self reporting rejection modal positioning.snap.png b/e2e-tests/cypress/snapshots/skills-display-integration_spec.js/self reporting rejection modal positioning.snap.png index 57411ff1c6..4f7a4cc570 100644 Binary files a/e2e-tests/cypress/snapshots/skills-display-integration_spec.js/self reporting rejection modal positioning.snap.png and b/e2e-tests/cypress/snapshots/skills-display-integration_spec.js/self reporting rejection modal positioning.snap.png differ diff --git a/e2e-tests/cypress/snapshots/skills_group_spec.js/Groups Description Markdown.snap.png b/e2e-tests/cypress/snapshots/skills_group_spec.js/Groups Description Markdown.snap.png index cd3d7ec2d6..532aa599c6 100644 Binary files a/e2e-tests/cypress/snapshots/skills_group_spec.js/Groups Description Markdown.snap.png and b/e2e-tests/cypress/snapshots/skills_group_spec.js/Groups Description Markdown.snap.png differ diff --git a/e2e-tests/cypress/snapshots/skills_spec.js/No Premature Name Wrap.snap.png b/e2e-tests/cypress/snapshots/skills_spec.js/No Premature Name Wrap.snap.png deleted file mode 100644 index d817638cfa..0000000000 Binary files a/e2e-tests/cypress/snapshots/skills_spec.js/No Premature Name Wrap.snap.png and /dev/null differ diff --git a/e2e-tests/cypress/snapshots/subjects_spec.js/No Premature Name Wrap.snap.png b/e2e-tests/cypress/snapshots/subjects_spec.js/No Premature Name Wrap.snap.png deleted file mode 100644 index 3cbb5f5aec..0000000000 Binary files a/e2e-tests/cypress/snapshots/subjects_spec.js/No Premature Name Wrap.snap.png and /dev/null differ diff --git a/e2e-tests/cypress/support/commands.js b/e2e-tests/cypress/support/commands.js index d7494a482f..131a9a11b7 100644 --- a/e2e-tests/cypress/support/commands.js +++ b/e2e-tests/cypress/support/commands.js @@ -493,7 +493,7 @@ Cypress.Commands.add('customLighthouse', () => { cy.lighthouse({ "performance": 0, "accessibility": 90, - "best-practices": 85, + "best-practices": 80, "seo": 0, "pwa": 0 }, {}, lighthouseOptions); diff --git a/e2e-tests/package.json b/e2e-tests/package.json index ffc34a4925..445e5f6f42 100644 --- a/e2e-tests/package.json +++ b/e2e-tests/package.json @@ -17,22 +17,22 @@ "cy:open": "cypress open", "cy:open:postgres": "TZ=UTC cypress open --env db=postgres", "cy:open:oauth": "TZ=UTC cypress open --env oauthMode=true", - "cy:open:dev": "TZ=UTC cypress open --config baseUrl=http://localhost:8082 --env failOnSnapshotDiff=false", - "cy:open:devEST": "TZ=EST cypress open --config baseUrl=http://localhost:8082 --env failOnSnapshotDiff=false", - "cy:open:dev:postgres": "TZ=UTC cypress open --config baseUrl=http://localhost:8082 --env db=postgres,failOnSnapshotDiff=false", - "cy:open:dev:oauth": "TZ=UTC cypress open --config baseUrl=http://localhost:8082 --env oauthMode=true failOnSnapshotDiff=false", - "cy:open:dev:verifyEmail": "TZ=UTC cypress open --config baseUrl=http://localhost:8082 --env verifyEmail=true failOnSnapshotDiff=false", - "cy:run": "TZ=UTC npm run licenseCheck && cypress run", - "cy:run:postgres": "TZ=UTC npm run licenseCheck && cypress run --env db=postgres", - "cy:run:oauth": "TZ=UTC npm run licenseCheck && cypress run --env oauthMode=true", - "cy:run:accessibility": "TZ=UTC npm run licenseCheck && cypress run --config experimentalRunEvents=true --browser chrome --headless --spec \"cypress/e2e/accessibility*.js,cypress/e2e/client-display/client-display_accessibility.js\"", - "cy:run:dev": "TZ=UTC cypress run --config baseUrl=http://localhost:8082", - "cy:run:dev:specificTest": "TZ=UTC cypress run --config baseUrl=http://localhost:8082 --spec \"cypress/e2e/skills-display-integration_spec.js\"", - "cy:run:dev:metrics": "TZ=UTC cypress run --config baseUrl=http://localhost:8082 --env customSnapshotsDir=./cypress/snapshots/metrics --spec \"cypress/e2e/metrics/multipleProjectMetrics_spec.js\"", - "cy:run:dev:clientDisplay": "TZ=UTC cypress run --config baseUrl=http://localhost:8082 --env customSnapshotsDir=./cypress/snapshots/client-display --spec \"cypress/e2e/client-display/client-display-skills_filtering_spec.js\"", + "cy:open:dev": "TZ=UTC cypress open --config baseUrl=http://localhost:8082", + "cy:open:devEST": "TZ=EST cypress open --config baseUrl=http://localhost:8082", + "cy:open:dev:postgres": "TZ=UTC cypress open --config baseUrl=http://localhost:8082 --env db=postgres", + "cy:open:dev:oauth": "TZ=UTC cypress open --config baseUrl=http://localhost:8082 --env oauthMode=true", + "cy:open:dev:verifyEmail": "TZ=UTC cypress open --config baseUrl=http://localhost:8082 --env verifyEmail=true", + "cy:run": "TZ=UTC npm run licenseCheck && cypress run --browser chrome", + "cy:run:postgres": "TZ=UTC npm run licenseCheck && cypress run --browser chrome --env db=postgres", + "cy:run:oauth": "TZ=UTC npm run licenseCheck && cypress run --browser chrome --env oauthMode=true", + "cy:run:accessibility": "TZ=UTC npm run licenseCheck && cypress run --browser chrome --config experimentalRunEvents=true --browser chrome --headless --spec \"cypress/e2e/accessibility*.js,cypress/e2e/client-display/client-display_accessibility.js\"", + "cy:run:dev": "TZ=UTC cypress run --browser chrome --config baseUrl=http://localhost:8082", + "cy:run:dev:specificTest": "TZ=UTC cypress run --browser chrome --config baseUrl=http://localhost:8082 --spec \"cypress/e2e/discoverable_proj_invite_spec.js\"", + "cy:run:dev:metrics": "TZ=UTC cypress run --browser chrome --config baseUrl=http://localhost:8082 --env customSnapshotsDir=./cypress/snapshots/metrics --spec \"cypress/e2e/metrics/*\"", + "cy:run:dev:clientDisplay": "TZ=UTC cypress run --browser chrome --config baseUrl=http://localhost:8082 --env customSnapshotsDir=./cypress/snapshots/client-display --spec \"cypress/e2e/client-display/client-display-deps-chart_spec.js\"", "cy:run:dev:accessibility": "TZ=UTC cypress run --browser chrome --headless --config baseUrl=http://localhost:8082 --spec cypress/e2e/accessibility*.js", - "cy:run:dev:postgres": "TZ=UTC cypress run --config baseUrl=http://localhost:8082 --env db=postgres", - "cy:run:dev:oauth": "TZ=UTC cypress run --config baseUrl=http://localhost:8082 --env oauthMode=true", + "cy:run:dev:postgres": "TZ=UTC cypress run --browser chrome --config baseUrl=http://localhost:8082 --env db=postgres", + "cy:run:dev:oauth": "TZ=UTC cypress run --browser chrome --config baseUrl=http://localhost:8082 --env oauthMode=true", "cy:verify": "cypress verify", "backend:start": "java -Dspring.config.location=classpath:/application.yml,file:serverConfigs/backend_application.properties -jar ../service/target/skills-service-*.jar", "backend:start:verifyEmail": "java -Dspring.config.location=classpath:/application.yml,file:serverConfigs/backend_application.properties -Dskills.authorization.verifyEmailAddresses=true -jar ../service/target/skills-service-*.jar", @@ -82,13 +82,13 @@ "@bahmutov/print-env": "2.1.2", "axe-core": "4.4.3", "badge-maker": "3.3.1", - "cypress": "10.6.0", + "cypress": "11.2.0", "cypress-audit": "1.1.0", "cypress-axe": "1.0.0", "cypress-file-upload": "5.0.8", "cypress-image-snapshot": "4.0.1", "cypress-plugin-tab": "1.0.5", - "cypress-real-events": "1.7.1", + "cypress-real-events": "1.7.4", "cypress-wait-until": "1.7.2", "dayjs": "1.10.4", "eslint": "7.9.0",