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.
This commit is contained in:
Peter Bacon Darwin
2014-09-19 22:35:51 +01:00
parent fbd620e8ae
commit 98ceda2194

View File

@@ -50,7 +50,8 @@
expect(limitedLetters.getText()).toEqual('Output letters: abc');
});
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();