Don't auto-scroll unit tests if you scrolled up

This commit is contained in:
Daniel Huigens 2018-04-04 18:48:04 +02:00
parent 17ad654d60
commit 7c3bbe9278

View File

@ -32,7 +32,13 @@ if (typeof Promise === 'undefined') {
describe('Unit Tests', function () {
if (typeof window !== 'undefined') { afterEach(function () { window.scrollTo(0, document.body.scrollHeight); }); }
if (typeof window !== 'undefined') {
afterEach(function () {
if (window.scrollY >= document.body.scrollHeight - window.innerHeight - 100) {
window.scrollTo(0, document.body.scrollHeight);
}
});
}
require('./crypto');
require('./general');