Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
34 | final public function testHeaderFromSyntax(): void |
||
35 | { |
||
36 | $index = plugin_load('syntax', 'description'); |
||
37 | $this->assertTrue($index instanceof syntax_plugin_description); |
||
38 | |||
39 | $request = new TestRequest(); |
||
1 ignored issue
–
show
|
|||
40 | $response = $request->get(array('id' => 'wiki:syntax')); |
||
41 | |||
42 | // check description meta headers |
||
43 | $this->assertStringContainsString( |
||
44 | 'Place the page description here', |
||
45 | $response->queryHTML('meta[name="description"]')->attr('content') |
||
46 | ); |
||
48 | } |
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