Skip to content

Commit

Permalink
refactor(cdk): fix file name (#44)
Browse files Browse the repository at this point in the history
Co-authored-by: Roman Sedov <darragon-nn@yandex.ru>
  • Loading branch information
waterplea and MarsiBarsi committed Nov 24, 2020
1 parent a5011ba commit 9fa2057
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion projects/cdk/utils/dom/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ export * from './get-closest-element';
export * from './get-document-or-shadow-root';
export * from './get-element-obscurers';
export * from './get-element-offset';
export * from './get-scrollable-parent';
export * from './get-scroll-parent';
export * from './is-current-target';
export * from './is-node-in';
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {getScrollParent} from '../get-scrollable-parent';
import {getScrollParent} from '../get-scroll-parent';

describe('getScrollableParent', () => {
describe('getScrollParent', () => {
it('There is no element', () => {
expect(getScrollParent(null)).toEqual(null);
});
Expand Down

0 comments on commit 9fa2057

Please sign in to comment.