mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
23 lines
279 B
PHP
23 lines
279 B
PHP
<?php
|
|
# Locations
|
|
$dir = dirname(__FILE__);
|
|
$out = "$dir/../tests";
|
|
|
|
# Base URL
|
|
$base_url = '/';
|
|
$tests_url = $base_url.'tests';
|
|
|
|
# Data
|
|
$browsers = array(
|
|
'html4+html5',
|
|
'html5'
|
|
);
|
|
$adapters = array(
|
|
'jquery',
|
|
'mootools',
|
|
'native',
|
|
'right',
|
|
'zepto'
|
|
);
|
|
|