mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Ensure the query tool will open properly under MS Edge.
This commit is contained in:
committed by
Dave Page
parent
97cf58fdc8
commit
f5e474e4ec
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user