Problem/Motivation
As highlighted in:
#2857808-26: Automate Accessibility Checks for Core
It looks like there is an error in the admin tests.
{ name: 'Create Article', path: '/user/1/edit' },
Perhaps it should be:
{ name: 'Create Article', path: '/node/add/article?destination=/admin/content' },
Steps to reproduce
Visit: https://git.drupalcode.org/project/drupal/-/blob/11.x/core/tests/Drupal/...
See the Create article link is pointing to the incorrect URL.
Proposed resolution
Make the Create article test use the node add path: /node/add/article?destination=/admin/content
Remaining tasks
Fix it
Review