Skip to content

Commit de7cc0c

Browse files
committed
chore: Add default Testo config
1 parent e38f5a5 commit de7cc0c

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

testo.php

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
use Testo\Config\ApplicationConfig;
6+
use Testo\Config\SuiteConfig;
7+
8+
return new ApplicationConfig(
9+
suites: [
10+
new SuiteConfig(
11+
name: 'default',
12+
location: new \Testo\Config\FinderConfig(
13+
include: ['tests/Testo'],
14+
),
15+
),
16+
],
17+
);

0 commit comments

Comments
 (0)