Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/diffs/components/diff_file_row_spec.js')
-rw-r--r--spec/frontend/diffs/components/diff_file_row_spec.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/frontend/diffs/components/diff_file_row_spec.js b/spec/frontend/diffs/components/diff_file_row_spec.js
index 1d1c5fec293..c5b76551fcc 100644
--- a/spec/frontend/diffs/components/diff_file_row_spec.js
+++ b/spec/frontend/diffs/components/diff_file_row_spec.js
@@ -32,7 +32,7 @@ describe('Diff File Row component', () => {
...diffFileRowProps,
});
- expect(wrapper.find(FileRow).props()).toEqual(
+ expect(wrapper.findComponent(FileRow).props()).toEqual(
expect.objectContaining({
...sharedProps,
}),
@@ -47,7 +47,7 @@ describe('Diff File Row component', () => {
showTooltip: true,
});
- expect(wrapper.find(ChangedFileIcon).props()).toEqual(
+ expect(wrapper.findComponent(ChangedFileIcon).props()).toEqual(
expect.objectContaining({
file: {},
size: 16,
@@ -74,7 +74,7 @@ describe('Diff File Row component', () => {
hideFileStats: false,
viewedFiles: isViewed ? { '#123456789': true } : {},
});
- expect(wrapper.find(FileRow).props('fileClasses')).toBe(expected);
+ expect(wrapper.findComponent(FileRow).props('fileClasses')).toBe(expected);
},
);
@@ -92,7 +92,7 @@ describe('Diff File Row component', () => {
},
hideFileStats,
});
- expect(wrapper.find(FileRowStats).exists()).toEqual(value);
+ expect(wrapper.findComponent(FileRowStats).exists()).toEqual(value);
});
});