forked from parcel-bundler/parcel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgraphql.js
37 lines (33 loc) · 820 Bytes
/
graphql.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
const assert = require('assert');
const gql = require('graphql-tag');
const {bundle, run, assertBundleTree} = require('./utils');
describe('graphql', function() {
it('should support requiring graphql files', async function() {
let b = await bundle(__dirname + '/integration/graphql/index.js');
assertBundleTree(b, {
name: 'index.js',
assets: ['index.js', 'local.graphql'],
childBundles: [
{
type: 'map'
}
]
});
let output = run(b);
assert.equal(typeof output, 'function');
assert.deepEqual(
output().definitions,
gql`
{
user(id: 5) {
...UserFragment
}
}
fragment UserFragment on User {
firstName
lastName
}
`.definitions
);
});
});