From e2b3b009e1ba928b29dcbe1539ef31793f7a11dc Mon Sep 17 00:00:00 2001 From: webzwo0i Date: Wed, 9 Sep 2020 22:40:53 +0200 Subject: [PATCH] tests: skip responsivness test on firefox 52.0/windows (#4275) --- tests/frontend/specs/responsiveness.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tests/frontend/specs/responsiveness.js b/tests/frontend/specs/responsiveness.js index 3eb7a1919..053ade217 100644 --- a/tests/frontend/specs/responsiveness.js +++ b/tests/frontend/specs/responsiveness.js @@ -23,7 +23,12 @@ describe('Responsiveness of Editor', function() { // And the test needs to be fixed to work in Firefox 52 on Windows 7. I am not sure why it fails on this specific platform // The errors show this.timeout... then crash the browser but I am sure something is actually causing the stack trace and // I just need to narrow down what, offers to help accepted. - xit('Fast response to keypress in pad with large amount of contents', function(done) { + it('Fast response to keypress in pad with large amount of contents', function(done) { + + //skip on Windows Firefox 52.0 + if(window.bowser && window.bowser.windows && window.bowser.firefox && window.bowser.version == "52.0") { + this.skip(); + } var inner$ = helper.padInner$; var chrome$ = helper.padChrome$; var chars = '0000000000'; // row of placeholder chars