feat: design applications and first api calls
Co-authored-by: Walid <87608619+WalidKorchi@users.noreply.github.com>
This commit is contained in:
14
cypress/fixtures/users/refresh-token/post.ts
Normal file
14
cypress/fixtures/users/refresh-token/post.ts
Normal file
@ -0,0 +1,14 @@
|
||||
import { Handler } from '../../handler'
|
||||
|
||||
export const postUsersRefreshTokenHandler: Handler = {
|
||||
method: 'POST',
|
||||
url: '/users/refresh-token',
|
||||
response: {
|
||||
statusCode: 200,
|
||||
body: {
|
||||
accessToken: 'access-token',
|
||||
expiresIn: 3600000,
|
||||
type: 'Bearer'
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user