mirror of
https://github.com/a2nt/silverstripe-webpack.git
synced 2024-10-22 17:05:31 +02:00
16 lines
335 B
PHP
16 lines
335 B
PHP
|
<?php
|
||
|
|
||
|
ini_set('display_errors', 1);
|
||
|
ini_set('display_startup_errors', 1);
|
||
|
error_reporting(E_ALL);
|
||
|
|
||
|
require_once('vendor/autoload.php');
|
||
|
require_once('framework/core/Constants.php');
|
||
|
|
||
|
require_once('app/code/Tasks/TestServer.php');
|
||
|
|
||
|
$req = new \SilverStripe\Control\NullHTTPRequest();
|
||
|
|
||
|
$t = new \Site\Tests\TestServer();
|
||
|
$t->run($req);
|