From 0be1ee6b6ceb6c6d915cf8f4fc8684482cafd023 Mon Sep 17 00:00:00 2001 From: James Allen Date: Tue, 8 Aug 2017 12:31:36 +0200 Subject: [PATCH] Fix smoke test when product name changes --- services/web/test/smoke/coffee/SmokeTests.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/web/test/smoke/coffee/SmokeTests.coffee b/services/web/test/smoke/coffee/SmokeTests.coffee index cdb63b1a7b..0e6f7d6244 100644 --- a/services/web/test/smoke/coffee/SmokeTests.coffee +++ b/services/web/test/smoke/coffee/SmokeTests.coffee @@ -94,7 +94,7 @@ describe "Opening", -> expect(error, "smoke test: error returned in getting project list").to.not.exist expect(!!stderr.match("200 OK"), "smoke test: response code is not 200 getting project list").to.equal true - expect(!!stdout.match("Your Projects - ShareLaTeX, Online LaTeX Editor"), "smoke test: body does not have correct title").to.equal true + expect(!!stdout.match("Your Projects - .*, Online LaTeX Editor"), "smoke test: body does not have correct title").to.equal true expect(!!stdout.match("ProjectPageController"), "smoke test: body does not have correct angular controller").to.equal true done()