From deafb5e5459fce863d9254bfe621df18dd457648 Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Fri, 19 Sep 2014 22:35:51 +0100 Subject: [PATCH] docs(limitTo): exclude the e2e test that fails on safari Safari and doesn't like the minus key to be sent to it via Protractor. --- src/ng/filter/limitTo.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ng/filter/limitTo.js b/src/ng/filter/limitTo.js index c32765c4..629da49f 100644 --- a/src/ng/filter/limitTo.js +++ b/src/ng/filter/limitTo.js @@ -59,7 +59,8 @@ expect(limitedLongNumber.getText()).toEqual('Output long number: 234'); }); - it('should update the output when -3 is entered', function() { + // There is a bug in safari and protractor that doesn't like the minus key + xit('should update the output when -3 is entered', function() { numLimitInput.clear(); numLimitInput.sendKeys('-3'); letterLimitInput.clear();