Skip to content

Commit e586aa8

Browse files
committed
Fixed installer tests.
1 parent de7810f commit e586aa8

1 file changed

Lines changed: 11 additions & 1 deletion

File tree

.vortex/installer/tests/Functional/Handlers/StarterInstallTest.php

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,25 @@ public static function dataProviderInstall(): array {
1717
return [
1818
'starter, demo db' => [
1919
static::cw(fn() => Env::put(PromptManager::makeEnvName(Starter::id()), Starter::LOAD_DATABASE_DEMO)),
20+
static::cw(fn(FunctionalTestCase $test) => $test->assertSutNotContains([
21+
'drupal/cms',
22+
'wikimedia/composer-merge-plugin',
23+
'vendor/drupal/cms/composer.json',
24+
])),
2025
],
2126

2227
'starter, Drupal profile' => [
2328
static::cw(fn() => Env::put(PromptManager::makeEnvName(Starter::id()), Starter::INSTALL_PROFILE_CORE)),
29+
static::cw(fn(FunctionalTestCase $test) => $test->assertSutNotContains([
30+
'drupal/cms',
31+
'wikimedia/composer-merge-plugin',
32+
'vendor/drupal/cms/composer.json',
33+
])),
2434
],
2535

2636
'starter, Drupal CMS profile' => [
2737
static::cw(fn() => Env::put(PromptManager::makeEnvName(Starter::id()), Starter::INSTALL_PROFILE_DRUPALCMS)),
28-
static::cw(fn(FunctionalTestCase $test) => $test->assertSutNotContains([
38+
static::cw(fn(FunctionalTestCase $test) => $test->assertSutContains([
2939
'drupal/cms',
3040
'wikimedia/composer-merge-plugin',
3141
'vendor/drupal/cms/composer.json',

0 commit comments

Comments
 (0)