Skip to content
Snippets Groups Projects

Skip tests earlier

Closed Michael Strelan requested to merge issue/drupal-3516771:3516771-prevent-setup-tasks into 11.x
11 files
+ 50
14
Compare changes
  • Side-by-side
  • Inline
Files
11
@@ -41,6 +41,10 @@ class AlertsJsonFeedTest extends OffCanvasTestBase {
* {@inheritdoc}
*/
public function setUp():void {
if ($this->name() === 'testAnnounceFeedUpdatedAndRemoved') {
$this->markTestSkipped('Skipped due to major version-specific logic. See https://www.drupal.org/project/drupal/issues/3359322');
}
parent::setUp();
$this->user = $this->drupalCreateUser(
@@ -57,7 +61,6 @@ public function setUp():void {
* Check the status of the announcements when the feed is updated and removed.
*/
public function testAnnounceFeedUpdatedAndRemoved(): void {
$this->markTestSkipped('Skipped due to major version-specific logic. See https://www.drupal.org/project/drupal/issues/3359322');
$this->drupalLogin($this->user);
$this->drupalGet('<front>');
$this->clickLink('Announcements');
Loading