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/admin/abuse_report/components/history_items_spec.js')
-rw-r--r--spec/frontend/admin/abuse_report/components/history_items_spec.js7
1 files changed, 3 insertions, 4 deletions
diff --git a/spec/frontend/admin/abuse_report/components/history_items_spec.js b/spec/frontend/admin/abuse_report/components/history_items_spec.js
index 86e994fdc57..e8888810095 100644
--- a/spec/frontend/admin/abuse_report/components/history_items_spec.js
+++ b/spec/frontend/admin/abuse_report/components/history_items_spec.js
@@ -10,7 +10,7 @@ import { mockAbuseReport } from '../mock_data';
describe('HistoryItems', () => {
let wrapper;
- const { report, reporter } = mockAbuseReport;
+ const { report } = mockAbuseReport;
const findHistoryItem = () => wrapper.findComponent(HistoryItem);
const findTimeAgo = () => wrapper.findComponent(TimeAgoTooltip);
@@ -19,7 +19,6 @@ describe('HistoryItems', () => {
wrapper = shallowMount(HistoryItems, {
propsData: {
report,
- reporter,
...props,
},
stubs: {
@@ -39,7 +38,7 @@ describe('HistoryItems', () => {
describe('rendering the title', () => {
it('renders the reporters name and the category', () => {
const title = sprintf(HISTORY_ITEMS_I18N.reportedByForCategory, {
- name: reporter.name,
+ name: report.reporter.name,
category: report.category,
});
expect(findHistoryItem().text()).toContain(title);
@@ -47,7 +46,7 @@ describe('HistoryItems', () => {
describe('when the reporter is not defined', () => {
beforeEach(() => {
- createComponent({ reporter: undefined });
+ createComponent({ report: { ...report, reporter: undefined } });
});
it('renders the `No user found` as the reporters name and the category', () => {