-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2069822
commit 6e30d30
Showing
9 changed files
with
83 additions
and
41 deletions.
There are no files selected for viewing
12 changes: 10 additions & 2 deletions
12
.insomnia/Environment/env_6314879a72bad3aae58da44d2b79e6baf276045e.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,20 @@ | ||
_id: env_6314879a72bad3aae58da44d2b79e6baf276045e | ||
type: Environment | ||
parentId: wrk_3bb7d2cce8874df1acc63b859f801136 | ||
modified: 1671035424374 | ||
modified: 1698765483557 | ||
created: 1671035424372 | ||
name: Base environment | ||
data: | ||
scheme: http | ||
base_path: "" | ||
host: localhost:3000 | ||
base_url: "{{ scheme }}://{{ host }}{{ base_path }}" | ||
dataPropertyOrder: null | ||
dataPropertyOrder: | ||
"&": | ||
- scheme | ||
- base_path | ||
- host | ||
- base_url | ||
color: null | ||
isPrivate: false | ||
metaSortKey: 1671035424372 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
.insomnia/Request/req_aff22b43eaaf44528d264b0b781cc445.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
_id: req_aff22b43eaaf44528d264b0b781cc445 | ||
type: Request | ||
parentId: wrk_3bb7d2cce8874df1acc63b859f801136 | ||
modified: 1671036338417 | ||
created: 1671036282497 | ||
url: "{{ base_url }}/transactions/{{ id }} " | ||
name: Update a transaction | ||
description: "" | ||
method: PATCH | ||
body: | ||
mimeType: application/json | ||
text: |- | ||
{ | ||
"source": "DE8412325587359375895", | ||
"senderName": "Max Mustermann", | ||
"destination": "GR872659435350353", | ||
"amount": 10.2, | ||
"currency": "STG", | ||
"subject": "The money we have talked about", | ||
"id": "b88f7029-fa93-41a5-9462-4884e544bf63" | ||
} | ||
parameters: [] | ||
headers: | ||
- name: Content-Type | ||
value: application/json | ||
authentication: {} | ||
metaSortKey: -1671036282497 | ||
isPrivate: false | ||
settingStoreCookies: true | ||
settingSendCookies: true | ||
settingDisableRenderRequestBody: false | ||
settingEncodeUrl: true | ||
settingRebuildPath: true | ||
settingFollowRedirects: global |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 0 additions & 10 deletions
10
.insomnia/RequestGroup/fld_27d4137e2fd34caa9cbf174d458b8861.yml
This file was deleted.
Oops, something went wrong.
10 changes: 10 additions & 0 deletions
10
.insomnia/UnitTest/ut_74e89eb2cf6540eb93ddfc7f7772a798.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
_id: ut_74e89eb2cf6540eb93ddfc7f7772a798 | ||
type: UnitTest | ||
parentId: uts_9729807abb1143879655f15c8341dec4 | ||
modified: 1671036391923 | ||
created: 1671036388774 | ||
requestId: req_aff22b43eaaf44528d264b0b781cc445 | ||
name: Patch Transaction Returns 200 | ||
code: |- | ||
const response1 = await insomnia.send(); | ||
expect(response1.status).to.equal(200); |