From 01b6d9778c88c5a6d4a554cd957f9f5b6ff78c16 Mon Sep 17 00:00:00 2001 From: Andrey Sidorov Date: Thu, 31 May 2012 13:35:24 +1000 Subject: [PATCH] simple test to trigger travis --- test/connect.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/connect.js b/test/connect.js index 48c75e2..8fb1882 100644 --- a/test/connect.js +++ b/test/connect.js @@ -13,6 +13,9 @@ describe("Client", function() { it("calls first createClient parameter with display object", function(done) { var client = x11.createClient(function(display) { should.exist(display); + should.exist(display.screen); + should.exist(display.screen[0]); + should.exist(display.screen[0].root); done(); }); });