mediawiki-extensions-Multim.../tests/phpunit/structure/BundleSizeTest.php

20 lines
546 B
PHP
Raw Normal View History

<?php
namespace MediaWiki\Extension\MultimediaViewer\Tests;
class BundleSizeTest extends \MediaWiki\Tests\Structure\BundleSizeTest {
/** @inheritDoc */
public function getBundleSizeConfig(): string {
return dirname( __DIR__, 3 ) . '/bundlesize.config.json';
}
/** @inheritDoc */
public function provideBundleSize() {
$bundleSizeConfig = json_decode( file_get_contents( $this->getBundleSizeConfig() ), true );
foreach ( $bundleSizeConfig[ 'modules' ] as $testCase ) {
yield $testCase['resourceModule'] => [ $testCase ];
}
}
}