Skip to content

Commit

Permalink
Skip install file test on Drupal 10.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Chi-teck committed May 17, 2024
1 parent 7add204 commit f35891b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/sut/bar/tests/src/Functional/InstallFileTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ final class InstallFileTest extends BrowserTestBase {
* Test callback.
*/
public function testInstall(): void {
if (\version_compare(\Drupal::VERSION, '10.3', '<')) {
self::markTestSkipped();
}

$permissions = ['administer modules', 'administer site configuration'];
$user = $this->drupalCreateUser($permissions);
$this->drupalLogin($user);
Expand Down

0 comments on commit f35891b

Please sign in to comment.