From dc8ffa51b7ebe5fb9bc1c89087c8b3c9e65d1006 Mon Sep 17 00:00:00 2001 From: Vojta Jina Date: Mon, 24 Oct 2011 15:22:34 -0700 Subject: fix(scenario.dsl): Fix dsl for $location New $location does not have hashSearch, hashPath. The old dsl was mixing $location / window.location so this solves the problem as well... --- src/markups.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/markups.js') diff --git a/src/markups.js b/src/markups.js index 75329169..b7761857 100644 --- a/src/markups.js +++ b/src/markups.js @@ -187,7 +187,7 @@ angularTextMarkup('option', function(text, textNode, parentElement){ expect(element('#link-3').attr('href')).toBe("/123"); element('#link-3').click(); - expect(browser().location().path()).toEqual('/123'); + expect(browser().window().path()).toEqual('/123'); }); it('should execute ng:click but not reload when href empty string and name specified', function() { @@ -207,7 +207,7 @@ angularTextMarkup('option', function(text, textNode, parentElement){ expect(element('#link-6').attr('href')).toBe("/6"); element('#link-6').click(); - expect(browser().location().path()).toEqual('/6'); + expect(browser().window().path()).toEqual('/6'); }); -- cgit v1.2.3