This commit is contained in:
Tatyana Kostromskaya
2023-08-29 10:43:51 +00:00
parent 0956e634df
commit e3b0601228
2 changed files with 12 additions and 2 deletions

View File

@@ -59,6 +59,7 @@ describe('auth', () => {
const http: httpm.HttpClient = new httpm.HttpClient('http-client-tests', [
ph
])
try {
const res: httpm.HttpClientResponse = await http.get(
'http://postman-echo.com/get'
)
@@ -68,5 +69,9 @@ describe('auth', () => {
const auth: string = obj.headers.authorization
expect(auth).toBe(`Bearer ${token}`)
expect(obj.url).toBe('http://postman-echo.com/get')
}
finally {
http.dispose()
}
})
})