UNPKG
charlotte-graphql
Version:
latest (0.0.3)
0.0.3
0.0.2
0.0.1
Generates GraphQL type definitions and resolvers off of a concise spec.
charlotte-graphql
/
test
/
memory-adapter-test.js
9 lines
(6 loc)
•
169 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
'use strict'
;
const
runSuite =
require
(
'./lib/suite'
);
const
adapter =
require
(
'../lib/memory-adapter'
)();
describe
(
'Memory adapter'
,
() =>
{
runSuite
(adapter); });