* 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
42 lines
709 B
JavaScript
42 lines
709 B
JavaScript
const ServerTestUtil = {
|
|
server_: null,
|
|
app_: null,
|
|
|
|
setApp: function (app) {
|
|
this.app_ = app;
|
|
},
|
|
|
|
start: async function () {
|
|
this.server_ = await new Promise((resolve, reject) => {
|
|
const s = this.app_.listen(PORT, (err) => {
|
|
if (err) {
|
|
reject(err);
|
|
}
|
|
});
|
|
resolve(s);
|
|
});
|
|
},
|
|
|
|
kill: function () {
|
|
return new Promise((resolve, _) => {
|
|
if (this.server_) {
|
|
this.server_.close(() => resolve());
|
|
}
|
|
resolve();
|
|
});
|
|
},
|
|
};
|
|
|
|
const instance = ServerTestUtil;
|
|
|
|
module.exports = {
|
|
setApp: function (app) {
|
|
instance.setApp(app);
|
|
return instance;
|
|
},
|
|
|
|
useServer: function () {
|
|
return instance;
|
|
},
|
|
};
|