mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-09 16:16:41 +08:00
fix(all): disable animations in e2e tests
This commit is contained in:
@ -785,7 +785,6 @@ export class Nav implements NavOutlet {
|
||||
|
||||
const enteringEl = enteringView.element!;
|
||||
const leavingEl = leavingView && leavingView.element!;
|
||||
const animated = this.animated && this.config.getBoolean('animated', true);
|
||||
const animationOpts: TransitionOptions = {
|
||||
mode: this.mode,
|
||||
showGoBack: this.canGoBackSync(enteringView),
|
||||
@ -795,7 +794,7 @@ export class Nav implements NavOutlet {
|
||||
baseEl: this.el,
|
||||
animationBuilder: this.animation || opts.animationBuilder || this.config.get('navAnimation'),
|
||||
progressCallback,
|
||||
animated,
|
||||
animated: this.animated,
|
||||
|
||||
enteringEl,
|
||||
leavingEl,
|
||||
|
||||
Reference in New Issue
Block a user