Files
pest/tests/Features/It.php

8 lines
161 B
PHP

<?php
it('is a test', function () {
$this->assertArrayHasKey('key', ['key' => 'foo']);
});
it('is a higher order message test')->expect(true)->toBeTrue();