We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de7c549 commit 059caf5Copy full SHA for 059caf5
phpunit.xml.dist
@@ -1,5 +1,5 @@
1
<?xml version="1.0" encoding="UTF-8"?>
2
-<phpunit bootstrap="vendor/autoload.php" colors="true">
+<phpunit bootstrap="tests/bootstrap.php" colors="true">
3
<testsuites>
4
<testsuite name="Test Suite">
5
<directory>tests/</directory>
tests/bootstrap.php
@@ -0,0 +1,8 @@
+<?php
+
+use function EventLoop\setLoop;
+use React\EventLoop\Factory;
6
+require dirname(__DIR__) . DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php';
7
8
+setLoop(Factory::create());
0 commit comments