mirror of
https://github.com/wassname/talk.git
synced 2026-06-30 18:16:50 +08:00
86385e0d86
- Introduced the Jest testing framework into our server side code so plugins can now have tests that run
6 lines
187 B
JavaScript
6 lines
187 B
JavaScript
const typeDefs = require('./server/typeDefs');
|
|
const hooks = require('./server/hooks');
|
|
const resolvers = require('./server/resolvers');
|
|
|
|
module.exports = { typeDefs, hooks, resolvers };
|