Skip to content

Commit

Permalink
feat(vendure-order-client): linting
Browse files Browse the repository at this point in the history
  • Loading branch information
martijnvdbrug committed Sep 28, 2023
1 parent 8c044d1 commit 01f5daa
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,9 @@ describe('Vendure order client', () => {
expect(store.value?.loading).toBe(false);
const promise = awaitAbleFunction();
expect(store.value?.loading).toBe(true);
const result = await promise;
expect(store.value?.loading).toBe(false);
return result;
const result = await promise;
expect(store.value?.loading).toBe(false);
return result;
}

async function testCurrentUserLoadingState(
Expand Down

0 comments on commit 01f5daa

Please sign in to comment.