From 52365d887b595366417a42e8e482fe7a05fdb0c4 Mon Sep 17 00:00:00 2001 From: rileyjbauer Date: Wed, 17 Apr 2019 23:25:05 -0700 Subject: [PATCH] Adjust --- test/frontend-integration-test/helloworld.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/frontend-integration-test/helloworld.spec.js b/test/frontend-integration-test/helloworld.spec.js index b532f59abad..e985c29f80e 100644 --- a/test/frontend-integration-test/helloworld.spec.js +++ b/test/frontend-integration-test/helloworld.spec.js @@ -224,7 +224,7 @@ describe('deploy helloworld sample run', () => { it('redirects back to all runs page', () => { browser.waitUntil(() => { - return new URL(browser.getUrl()).hash.startsWith('#/runs'); + return new URL(browser.getUrl()).hash === '#/runs'; }, waitTimeout); });