mirror of
https://github.com/pestphp/pest.git
synced 2026-07-22 01:20:03 +02:00
12 lines
208 B
PHP
12 lines
208 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Pest\Configuration\Printer;
|
|
|
|
it('creates a printer instance', function (): void {
|
|
$theme = pest()->printer();
|
|
|
|
expect($theme)->toBeInstanceOf(Printer::class);
|
|
});
|