* chore: Move factories and helpers to a better place * align factory product variant * fix factory cart * add simple store fac * fix tests * fix tests * fix * fix cart seeder
22 lines
380 B
JavaScript
22 lines
380 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_
|
|
},
|
|
}
|