From 22e86ce20866c26cbfe2d68f3119de83a036cd97 Mon Sep 17 00:00:00 2001 From: Ben Newman Date: Thu, 3 Aug 2017 21:11:02 -0400 Subject: [PATCH] Add timeout to static-html test. --- tools/tests/static-html.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/tests/static-html.js b/tools/tests/static-html.js index fc17f67373..2fe6895a2b 100644 --- a/tools/tests/static-html.js +++ b/tools/tests/static-html.js @@ -54,7 +54,8 @@ selftest.define("static-html - throws error", () => { s.cd('myapp'); const run = startRun(s); - run.matchBeforeExit("Attributes on not supported"); + run.match("Attributes on not supported"); + run.waitSecs(90); run.stop(); });