Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Commit 5219ab8

Browse files
committed
Revert those string-named components
1 parent 6216d27 commit 5219ab8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/views/issueish-timeline-view.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ describe('IssueishTimelineView', function() {
7171
],
7272
}));
7373

74-
const commitGroup0 = wrapper.find('Relay(BareCommitsView)').filterWhere(c => c.prop('nodes').length === 2);
74+
const commitGroup0 = wrapper.find('ForwardRef(Relay(BareCommitsView))').filterWhere(c => c.prop('nodes').length === 2);
7575
assert.deepEqual(commitGroup0.prop('nodes').map(n => n.id), [0, 1]);
7676

7777
const commentGroup0 = wrapper.find('Grouped(Relay(BareIssueCommentView))').filterWhere(c => c.prop('nodes').length === 1);
@@ -80,7 +80,7 @@ describe('IssueishTimelineView', function() {
8080
const mergedGroup = wrapper.find('Grouped(Relay(BareMergedEventView))').filterWhere(c => c.prop('nodes').length === 1);
8181
assert.deepEqual(mergedGroup.prop('nodes').map(n => n.id), [3]);
8282

83-
const commitGroup1 = wrapper.find('Relay(BareCommitsView)').filterWhere(c => c.prop('nodes').length === 4);
83+
const commitGroup1 = wrapper.find('ForwardRef(Relay(BareCommitsView))').filterWhere(c => c.prop('nodes').length === 4);
8484
assert.deepEqual(commitGroup1.prop('nodes').map(n => n.id), [4, 5, 6, 7]);
8585

8686
const commentGroup1 = wrapper.find('Grouped(Relay(BareIssueCommentView))').filterWhere(c => c.prop('nodes').length === 2);

0 commit comments

Comments
 (0)