* chore: create tests * chore: models * fix: passing initial tests * test: adds integration test * test: clean up integration implementation * fix: claims * fix: brightpearl + webshipper * tests: passing * fix: update claim items * fix: adds gitignore * fix: pr comments * fix: single migration * fix(medusa-plugin-segment): adds item claimed event to segment
22 lines
387 B
JavaScript
22 lines
387 B
JavaScript
const axios = require("axios").default;
|
|
|
|
const ServerTestUtil = {
|
|
port_: null,
|
|
client_: null,
|
|
|
|
setPort: function (port) {
|
|
this.client_ = axios.create({ baseURL: `http://localhost:${port}` });
|
|
},
|
|
};
|
|
|
|
const instance = ServerTestUtil;
|
|
|
|
module.exports = {
|
|
setPort: function (port) {
|
|
instance.setPort(port);
|
|
},
|
|
useApi: function () {
|
|
return instance.client_;
|
|
},
|
|
};
|