From 3e82ec8e331ed8716d8f1c1a64b116ecb5a00663 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Thu, 12 Jan 2017 19:50:02 -0800 Subject: [PATCH] check dnsbl after reboot --- test/app-flow-test.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/app-flow-test.js b/test/app-flow-test.js index 6c88a25..ef3f9f4 100644 --- a/test/app-flow-test.js +++ b/test/app-flow-test.js @@ -124,6 +124,10 @@ describe('Application flow test', function () { cloudron.checkAddons(cloudron.appFqdn(location), owner); }); + it('can check dnsbl', function () { + cloudron.checkDnsbl(cloudron.appFqdn(location)); + }); + it('can access exposed port', function (done) { checkExposedPort(5151, done); });