mirror of
https://github.com/usebruno/bruno.git
synced 2026-07-07 14:08:38 +00:00
* wip: code cleanup, added axios, nanoid shims for quickjs vm * wip: test fn fix * wip: scrip exec fix * wip: added node-fetch & uuid shims
18 lines
203 B
Plaintext
18 lines
203 B
Plaintext
meta {
|
|
name: uuid
|
|
type: http
|
|
seq: 1
|
|
}
|
|
|
|
get {
|
|
url: {{host}}/ping
|
|
body: none
|
|
auth: none
|
|
}
|
|
|
|
script:pre-request {
|
|
const { v4 } = require("uuid");
|
|
|
|
req.setHeader("transaction-id", v4());
|
|
}
|