composer update (#1104)

This commit is contained in:
Kevin Papst
2019-09-13 17:16:53 +02:00
committed by GitHub
parent 8f2b82b832
commit 35c65ba890
10 changed files with 664 additions and 480 deletions

View File

@@ -60,6 +60,7 @@ class ExportControllerTest extends ControllerBaseTest
$expected = ['csv', 'html', 'pdf', 'xlsx'];
$node = $client->getCrawler()->filter('#export-buttons button');
$this->assertEquals(count($expected), $node->count());
/** @var \DOMElement $button */
foreach ($node->getIterator() as $button) {
$type = $button->getAttribute('data-type');
$this->assertContains($type, $expected);