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 a0f6814 commit 55f22bbCopy full SHA for 55f22bb
2 files changed
.travis.yml
@@ -6,6 +6,7 @@ php:
6
- 5.6
7
- 7.0
8
- 7.1
9
+ - 7.2
10
- nightly # ignore errors, see below
11
- hhvm # ignore errors, see below
12
@@ -17,8 +18,8 @@ matrix:
17
18
- php: nightly
19
- php: hhvm
20
-before_script:
21
- - composer install
22
-
+install:
+ - composer install --no-interaction
23
+
24
script:
25
- vendor/bin/phpunit --coverage-text
tests/FunctionalIntegrationTest.php
@@ -15,6 +15,7 @@ public function testRequestToLocalhostEmitsSingleRemoteConnection()
15
$loop = Factory::create();
16
$server = new Server(0, $loop);
+ $server->on('connection', $this->expectCallableOnce());
$server->on('connection', function (ConnectionInterface $conn) use ($server) {
$conn->end("HTTP/1.1 200 OK\r\n\r\nOk");
$server->close();
0 commit comments