Skip to content

Commit 910fa44

Browse files
committed
ref(issueDetails): remove outdated assertions
1 parent d3957a8 commit 910fa44

File tree

1 file changed

+0
-20
lines changed

1 file changed

+0
-20
lines changed

static/app/views/issueDetails/streamline/header/header.spec.tsx

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -101,30 +101,10 @@ describe('StreamlinedGroupHeader', () => {
101101
screen.getByRole('button', {name: 'Modify issue assignee'})
102102
).toBeInTheDocument();
103103
expect(screen.getByText('Leander')).toBeInTheDocument();
104-
expect(
105-
screen.getByRole('button', {name: 'Manage issue experience'})
106-
).toBeInTheDocument();
107104
expect(screen.getByRole('button', {name: 'Resolve'})).toBeInTheDocument();
108105
expect(screen.getByRole('button', {name: 'Archive'})).toBeInTheDocument();
109106
});
110107

111-
it('displays new experience button if flag is set', async () => {
112-
render(
113-
<StreamlinedGroupHeader
114-
{...defaultProps}
115-
group={group}
116-
project={project}
117-
event={null}
118-
/>,
119-
{
120-
organization,
121-
}
122-
);
123-
expect(
124-
await screen.findByRole('button', {name: 'Manage issue experience'})
125-
).toBeInTheDocument();
126-
});
127-
128108
it('displays share icon if issue has been shared', async () => {
129109
render(
130110
<StreamlinedGroupHeader

0 commit comments

Comments
 (0)