Commit 7f30efce authored by Olena Horal-Koretska's avatar Olena Horal-Koretska

Merge branch 'fix-stray-async-describe-block' into 'master'

Remove stray `async` in test describe block

See merge request gitlab-org/gitlab!63142
parents defc74fe 0f38289d
......@@ -89,7 +89,7 @@ describe('JiraIssuesShow', () => {
state | statusIcon | statusBadgeClass | badgeText
${issueStates.OPENED} | ${'issue-open-m'} | ${'status-box-open'} | ${'Open'}
${issueStates.CLOSED} | ${'mobile-issue-close'} | ${'status-box-issue-closed'} | ${'Closed'}
`('when issue state is `$state`', async ({ state, statusIcon, statusBadgeClass, badgeText }) => {
`('when issue state is `$state`', ({ state, statusIcon, statusBadgeClass, badgeText }) => {
beforeEach(async () => {
mockAxios.onGet(mockJiraIssuesShowPath).replyOnce(200, { ...mockJiraIssue, state });
createComponent();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment