Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
Signed-off-by: Mior Muhammad Zaki <[email protected]>
  • Loading branch information
crynobone committed Jul 22, 2023
1 parent fdaf76b commit a75f1d1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/OperatingSystemTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,11 @@ public function test_it_can_resolve_chrome_version_commands()
foreach (OperatingSystem::all() as $os) {
$commands = OperatingSystem::chromeVersionCommands($os);

$this->assertTrue(is_array($commands), 'Commands should be an array');
$this->assertTrue(\is_array($commands), 'Commands should be an array');
$this->assertFalse(empty($commands), 'Commands should not be empty');
}
}

public function test_it_cant_resolve_invalid_chrome_version_commands()
{
$this->expectException('InvalidArgumentException');
Expand Down

0 comments on commit a75f1d1

Please sign in to comment.