UNPKG

@feathers-plus/graphql

Version:

A high performance GraphQL adapter for SQL and non-SQL databases.

11 lines (8 loc) 267 B
const { assert } = require('chai'); const plugin = require('../lib'); describe('feathers-graphql', () => { it('basic functionality', () => { assert.isFunction(plugin, 'plugin not a function'); assert.isObject(plugin(), 'service not an object'); }); });