diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/tests/TestServer.hx | 4 | ||||
| -rw-r--r-- | test/tests/TestTimer.hx | 12 |
2 files changed, 12 insertions, 4 deletions
diff --git a/test/tests/TestServer.hx b/test/tests/TestServer.hx index abdbf8f..b02bb90 100644 --- a/test/tests/TestServer.hx +++ b/test/tests/TestServer.hx @@ -67,10 +67,6 @@ class TestServer extends Test { server.onServerInited = () -> { final client = new FakeClient(server.localIp, server.port); var client2:FakeClient = null; - // client.ws.on("message", data -> { - // final data:WsEvent = Json.parse(data); - // trace(data.type); - // }); client.message().then((data) -> { Assert.equals(Connected, data.type); diff --git a/test/tests/TestTimer.hx b/test/tests/TestTimer.hx index 1261553..2e6e9e8 100644 --- a/test/tests/TestTimer.hx +++ b/test/tests/TestTimer.hx @@ -137,6 +137,18 @@ class TestTimer extends Test { } @:timeout(500) + function testDoublePause(async:Async) { + final timer = new VideoTimer(); + timer.start(); + timer.pause(); + Timer.delay(() -> { + timer.pause(); + almostEq(0, timer.getTime()); + async.done(); + }, 300); + } + + @:timeout(500) function testBigRate(async:Async) { final timer = new VideoTimer(); timer.start(); |
