mirror of
https://github.com/pestphp/pest.git
synced 2026-03-11 02:07:23 +01: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);
|
|
});
|