mirror of
https://github.com/usebruno/bruno.git
synced 2025-08-04 11:01:51 +02: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
215 B
Plaintext
18 lines
215 B
Plaintext
meta {
|
|
name: nanoid
|
|
type: http
|
|
seq: 1
|
|
}
|
|
|
|
get {
|
|
url: {{host}}/ping
|
|
body: none
|
|
auth: none
|
|
}
|
|
|
|
script:pre-request {
|
|
const { nanoid } = require("nanoid");
|
|
|
|
req.setHeader("transaction-id", nanoid());
|
|
}
|