Files
pest/tests/Features/Test.php
T
2026-07-19 03:41:57 +01:00

10 lines
182 B
PHP

<?php
declare(strict_types=1);
test('a test', function (): void {
expect(['key' => 'foo'])->toHaveKey('key');
});
test('higher order message test')->expect(true)->toBeTrue();