Per wikitech-l discussion: Move tests from maintenance/tests/ to tests/. They're...
[lhc/web/wiklou.git] / tests / selenium / suites / SimpleSeleniumConfig.php
1 <?php
2 class SimpleSeleniumConfig {
3
4 public static function getSettings(&$includeFiles, &$globalConfigs) {
5 $includes = array(
6 //files that needed to be included would go here
7 );
8 $configs = array(
9 'wgDefaultSkin' => 'chick'
10 );
11 $includeFiles = array_merge( $includeFiles, $includes );
12 $globalConfigs = array_merge( $globalConfigs, $configs);
13 return true;
14 }
15 }