1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-01-15 08:00:05 +00:00

lint: fix

This commit is contained in:
2021-03-28 19:27:57 +02:00
parent 1fabb9e610
commit dce8a08a86
2 changed files with 13 additions and 9 deletions

View File

@@ -102,7 +102,7 @@ export class AuthManager {
this.logOut() this.logOut()
const { result: formResponse } = await this.requestClient.get<string>( const { result: formResponse } = await this.requestClient.get<string>(
this.loginUrl.replace('do', ''), this.loginUrl.replace('.do', ''),
undefined, undefined,
'text/plain' 'text/plain'
) )

View File

@@ -176,15 +176,19 @@ describe('AuthManager', () => {
const response = await authManager.checkSession() const response = await authManager.checkSession()
expect(response.isLoggedIn).toBeTruthy() expect(response.isLoggedIn).toBeTruthy()
expect(mockedAxios.get).toHaveBeenNthCalledWith(1, `http://test-server.com/SASJobExecution`, { expect(mockedAxios.get).toHaveBeenNthCalledWith(
withCredentials: true, 1,
responseType: 'text', `http://test-server.com/SASJobExecution`,
transformResponse: undefined, {
headers: { withCredentials: true,
Accept: '*/*', responseType: 'text',
'Content-Type': 'text/plain' transformResponse: undefined,
headers: {
Accept: '*/*',
'Content-Type': 'text/plain'
}
} }
}) )
done() done()
}) })