I need to test my API with messages packed in Google Flatbuffers. I want to run these tests both locally and on CircleCI.
Can I set this up with postman? It seems that we cannot import arbitrary external modules into the Postman scripting sandbox.
Specifically I would need:
import * as flatbuffers from 'flatbuffers';
import { MyFlatbuffersProtocol } from './my_protocol_generated_by_flatbuffers';
// Create flatbuffers message.
...
// Send to API endpoints (both websocket and HTTP).
...
I’ve already tried:
Reading the documentation and searching the community posts.