simple test to trigger travis

This commit is contained in:
Andrey Sidorov 2012-05-31 13:35:24 +10:00
parent 0fd0e4485a
commit 01b6d9778c

View file

@ -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();
});
});