Ensure the query tool will open properly under MS Edge.

This commit is contained in:
Murtuza Zabuawala
2018-04-10 11:09:59 +01:00
committed by Dave Page
parent 97cf58fdc8
commit f5e474e4ec
5 changed files with 47 additions and 25 deletions

View File

@@ -32,7 +32,7 @@ describe('modifyAnimation', function () {
describe('When browser tree animation is disabled', () => {
beforeEach(() => {
pgBrowser.get_preference.and.returnValue({value: false});
modifyAnimation.modify_acitree_animation(pgBrowser);
modifyAnimation.modifyAcitreeAnimation(pgBrowser);
});
it('tree options to animate should be disabled', function() {
expect(pgBrowser.get_preference).toHaveBeenCalled();
@@ -50,7 +50,7 @@ describe('modifyAnimation', function () {
describe('When browser tree animation is enabled', () => {
beforeEach(() => {
pgBrowser.get_preference.and.returnValue({value: true});
modifyAnimation.modify_acitree_animation(pgBrowser);
modifyAnimation.modifyAcitreeAnimation(pgBrowser);
});
it('tree options to animate should be enabled', function() {
expect(pgBrowser.get_preference).toHaveBeenCalled();
@@ -68,7 +68,7 @@ describe('modifyAnimation', function () {
describe('When alertify animation is disabled', () => {
beforeEach(() => {
pgBrowser.get_preference.and.returnValue({value: false});
modifyAnimation.modify_alertify_animation(pgBrowser);
modifyAnimation.modifyAlertifyAnimation(pgBrowser);
});
it('alertify disalogue/notification animation should be disabled', function() {
@@ -81,7 +81,7 @@ describe('modifyAnimation', function () {
describe('When alertify animation is enabled', () => {
beforeEach(() => {
pgBrowser.get_preference.and.returnValue({value: true});
modifyAnimation.modify_alertify_animation(pgBrowser);
modifyAnimation.modifyAlertifyAnimation(pgBrowser);
});
it('alertify disalogue/notification animation should be enabled', function() {
expect(pgBrowser.get_preference).toHaveBeenCalled();