mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-14 19:26:42 +00:00
6270246d44
The main motivation is to reduce runtime by not invoking an unneeded Selenium test phase in Quibble, which currently needs about 1 minute to install npm dependencies. Depends-On: Ieb7591f3c0ac843677a2a61b4ad47f920fc2ca2d Bug: T255149 Change-Id: I0563421b3a3d3e6e81abec987c266ade275b47a1
12 lines
266 B
PHP
12 lines
266 B
PHP
<?php
|
|
|
|
namespace MediaWiki\Skins\Vector\Tests\Structure;
|
|
|
|
class BundleSizeTest extends \MediaWiki\Tests\Structure\BundleSizeTest {
|
|
|
|
/** @inheritDoc */
|
|
public function getBundleSizeConfig(): string {
|
|
return dirname( __DIR__, 3 ) . '/bundlesize.config.json';
|
|
}
|
|
}
|