Commit 0f38289d authored by Ezekiel Kigbo's avatar Ezekiel Kigbo

Remove stray `async` in test describe block

parent cf9ebe30
......@@ -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