Skip to content

Commit 8e039fb

Browse files
committed
Update promise resolution in TestServer
Modified the promise resolution in the TestServer class to explicitly resolve with undefined instead of no arguments
1 parent 89687ed commit 8e039fb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • src/HttpClient/middlewares/request/setupAxios/__tests__

src/HttpClient/middlewares/request/setupAxios/__tests__/TestServer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export class TestServer {
5555
return reject(err)
5656
}
5757

58-
resolve()
58+
resolve(undefined)
5959
})
6060
})
6161
}

0 commit comments

Comments
 (0)