summaryrefslogtreecommitdiff
path: root/maintenance/tests/selenium/suites/SimpleSeleniumConfig.php
blob: cffa83c4ea43c8a135f56ce5b50230bf7d34281c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
class SimpleSeleniumConfig {
	
	public static function getSettings(&$includeFiles, &$globalConfigs) {
		$includes = array(
			//files that needed to be included would go here
		);
		$configs = array(
			'wgDefaultSkin' => 'chick'
		);
		$includeFiles = array_merge( $includeFiles, $includes );
		$globalConfigs = array_merge( $globalConfigs, $configs);
		return true; 
	}
}