Skip to content

Commit

Permalink
Core: fix transitionExecutor + datebox knockout tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanblinov2k17 committed Oct 14, 2024
1 parent 478ee75 commit 4aaf069
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import $ from '../../core/renderer';
import Class from '../../core/class';
import { extend } from '../../core/utils/extend';
import { executeAsync } from '../../core/utils/common';
import commonUtils from '../../__internal/core/utils/m_common';
import { isFunction, isPlainObject } from '../../core/utils/type';
import { map } from '../../core/utils/iterator';
import fx from '../fx';
Expand Down Expand Up @@ -164,7 +164,7 @@ export const TransitionExecutor = Class.inherit({
that.reset();
});

executeAsync(function() {
commonUtils.executeAsync(function() {
that._startAnimations();
});
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import $ from 'jquery';
import { noop } from 'core/utils/common';
import devices from 'core/devices';
import { noop } from '__internal/core/utils/m_common';
import devices from '__internal/core/m_devices';
import fx from 'animation/fx';
import executeAsyncMock from '../../helpers/executeAsyncMock.js';
import { presets as animationPresets } from 'animation/presets/presets';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import '../../helpers/noIntl.js';

import $ from 'jquery';
import fx from 'animation/fx';
import support from 'core/utils/support';
import support from '__internal/core/utils/m_support';
import devices from 'core/devices';
import uiDateUtils from '__internal/ui/date_box/m_date_utils';
import dateLocalization from 'localization/date';
Expand Down

0 comments on commit 4aaf069

Please sign in to comment.