Transform you Swagger OAI spec files to a series of HAR request objects.
npm install
Using as a ES module:
import swagger2har from 'swagger2har';
import swaggerJSON from 'your-swagger-api.json'; // e.g. http://petstore.swagger.io/v2/swagger.json
swagger2har(swaggerJSON);
npm run test