To support us monitoring the amount of CSS and JS we ship to users its imperative we start tracking the size of these modules statically so we are aware when we increase the size of them. Bug: T373017 Change-Id: I4c52d0216958a6595965e42f5416a24ee0c2054c
12 lines
294 B
PHP
12 lines
294 B
PHP
<?php
|
|
|
|
namespace MediaWiki\Extensions\UniversalLanguageSelector\Tests\Structure;
|
|
|
|
class BundleSizeTest extends \MediaWiki\Tests\Structure\BundleSizeTestBase {
|
|
|
|
/** @inheritDoc */
|
|
public function getBundleSizeConfig(): string {
|
|
return dirname( __DIR__, 3 ) . '/bundlesize.config.json';
|
|
}
|
|
}
|