Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexVanderbist committed Jan 11, 2022
1 parent 3c414b9 commit fecc627
Showing 1 changed file with 4 additions and 11 deletions.
15 changes: 4 additions & 11 deletions tests/Config/IgnitionConfigTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,9 @@
'local_sites_path' => 'local',
]);

$configArray = $config->toArray();


$this->assertEquals([
'editor' => 'phpstorm',
'remoteSitesPath' => 'remote',
'localSitesPath' => 'local',
'theme' => 'light',
'enableShareButton' => false,
'enableRunnableSolutions' => false,
'directorySeparator' => DIRECTORY_SEPARATOR,
'hideSolutions' => false,
], $config->toArray());
$this->assertEquals('phpstorm', $configArray['editor']);
$this->assertEquals('remote', $configArray['remoteSitesPath']);
$this->assertEquals('local', $configArray['localSitesPath']);
});

0 comments on commit fecc627

Please sign in to comment.