mirror of
https://github.com/pestphp/pest.git
synced 2026-04-21 06:27:28 +02:00
10 lines
176 B
PHP
10 lines
176 B
PHP
<?php
|
|
|
|
use Pest\Configuration\Printer;
|
|
|
|
it('creates a printer instance', function () {
|
|
$theme = pest()->printer();
|
|
|
|
expect($theme)->toBeInstanceOf(Printer::class);
|
|
});
|