htmlburger /
wpemerge
| 1 | <?php |
||
| 2 | /** |
||
| 3 | * Example test class |
||
| 4 | * |
||
| 5 | * @package wpacceptance |
||
| 6 | */ |
||
| 7 | |||
| 8 | /** |
||
| 9 | * PHPUnit test class |
||
| 10 | */ |
||
| 11 | class ExampleTest extends \WPAcceptance\PHPUnit\TestCase { |
||
|
0 ignored issues
–
show
|
|||
| 12 | public function testHome() { |
||
| 13 | $I = $this->openBrowserPage(); |
||
| 14 | $I->moveTo('/'); |
||
| 15 | $I->seeText('acceptance:index'); |
||
| 16 | } |
||
| 17 | |||
| 18 | public function testGet() { |
||
| 19 | $I = $this->openBrowserPage(); |
||
| 20 | $I->moveTo('/hook'); |
||
| 21 | $I->seeText('acceptance:/hook'); |
||
| 22 | } |
||
| 23 | } |
||
| 24 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths