From b3965eb06994fbe11b5a945efc99b136714b3fe3 Mon Sep 17 00:00:00 2001 From: Sam Date: Tue, 24 May 2016 13:25:47 +1000 Subject: [PATCH] was failing on latest phantom, fix test --- spec/phantom_js/smoke_test.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/spec/phantom_js/smoke_test.js b/spec/phantom_js/smoke_test.js index 779b686eca7..4b4db60c9b8 100644 --- a/spec/phantom_js/smoke_test.js +++ b/spec/phantom_js/smoke_test.js @@ -190,6 +190,10 @@ var runTests = function() { return document.querySelector(".topic-list"); }); + test('we have a create topic button', function() { + return document.querySelector("#create-topic"); + }); + exec("open composer", function() { $("#create-topic").click(); });