UNPKG

mgs-graphql

Version:

The simple way to generates GraphQL schemas and Sequelize models from your models definition,microservice supported

16 lines (13 loc) 265 B
// @flow /* eslint-env jest */ require('./schema') const sequelize = require('./sequelize') const initData = require('./data') beforeAll(async () => { await sequelize.sync({ force: true }) await initData(sequelize) }) afterAll(() => { })