#3504664 "Modules that set"
1 unresolved thread
1 unresolved thread
Merge request reports
Activity
added 1 commit
- 2a905bd3 - In InstallerController::activate() add all messages from installed projects to the response
added 3 commits
-
2a905bd3...3f279a28 - 2 commits from branch
project:2.0.x
- bb5fa3ac - Merge branch project_browser:2.0.x into 3504664-modules-that-set
-
2a905bd3...3f279a28 - 2 commits from branch
added 1 commit
- 6b6209b0 - remove dependency injection for messenger as its already there
- Resolved by Kunal Sachdev
- Resolved by Kunal Sachdev
- Resolved by Kunal Sachdev
543 543 $this->assertTrue($is_visible); 544 544 } 545 545 546 /** 547 * Tests that the messages set by projects while installing are shown. 548 */ 549 public function testMessagesSetByProjectsAreShown(): void { 550 TestActivator::handle('drupal/cream_cheese'); 551 $this->drupalGet('project-browser/project_browser_test_mock'); 552 $messages_to_set = ["This message is from Cream cheese on a bagel", "For testing purpose only."]; 553 TestActivator::setMessagesOnActivate('drupal/cream_cheese', $messages_to_set); 554 $card = $this->waitForProject('Cream cheese on a bagel'); 555 $card->pressButton('Install Cream cheese on a bagel'); 556 $this->waitForProjectToBeInstalled($card); 557 foreach ($messages_to_set as $message) { 558 $this->assertPageHasText($message);
Please register or sign in to reply