Skip to content
Snippets Groups Projects

Issue #3487329: Provide installation checklist

1 unresolved thread

Issue #3487329: Provide installation checklist

Closes #3487329

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
  • Adam G-H
  • 14
    15 // Assert we have the block and the first task is the next task.
    16 cy.get('.block-installation-checklist').contains('Finish setting up your account.');
    17
    18 // Assert we can go to the checklist.
    19 cy.get('.block-installation-checklist').contains('a', 'See the installation checklist' ).click();
    20 cy.get('.page-title').should('contain.text', 'Finish setting up your site');
    21
    22 // Assert we can mark the first item as done.
    23 cy.findByLabelText('Finish setting up your account.').check();
    24 cy.findByDisplayValue('Save').click();
    25 cy.get('[data-drupal-messages]').should('contain.text', 'Finish setting up your site progress has been saved. 1 item changed.');
    26
    27 // Go back to the dashboard and the next task should have changed.
    28 cy.visit('/admin/dashboard');
    29 cy.get('.block-installation-checklist').contains('Create your first content page');
  • Adam G-H
  • added 5 commits

    • 4c3f9503 - 1 commit from branch project:0.x
    • b88292d8 - Added installation checklist.
    • a8c5acca - Removed unnecessary menu.
    • 3abf63ee - Added cypress test for the installation checklist.
    • 643a2455 - Fixed dependencies.

    Compare with previous version

  • added 1 commit

    Compare with previous version

  • added 2 commits

    • 378749e6 - Fix config dependencies.
    • 748035f7 - Use a more specific selector in tests.

    Compare with previous version

  • Please register or sign in to reply
    Loading