feat: Development server for core + plugins (#2448)
This commit is contained in:
committed by
GitHub
parent
4de4f20b46
commit
b88cef2b1f
9
integration-tests/development/database/index.js
Normal file
9
integration-tests/development/database/index.js
Normal file
@@ -0,0 +1,9 @@
|
||||
const user = require("./user")
|
||||
const region = require("./region")
|
||||
const customer = require("./customer")
|
||||
|
||||
module.exports = async (db) => {
|
||||
await user(db)
|
||||
await region(db)
|
||||
await customer(db)
|
||||
}
|
||||
Reference in New Issue
Block a user