Skip to content

Commit

Permalink
test(schema): use exposed graphql in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Marton committed Jul 28, 2015
1 parent 7c01e31 commit 6690b6c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions src/e2e.spec.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import {expect} from 'chai';
import {graphql} from 'graphql';
import mongoose from 'mongoose';

import {getSchema} from './schema';
import {getSchema, graphql} from './schema';
import User from '../fixture/user';

describe('e2e', () => {
Expand Down
3 changes: 1 addition & 2 deletions src/schema.spec.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
import {expect} from 'chai';
import {graphql} from 'graphql';
import mongoose from 'mongoose';
import ObjectID from 'bson-objectid';

import {getSchema} from './schema';
import {getSchema, graphql} from './schema';
import User from '../fixture/user';

describe('schema', () => {
Expand Down

0 comments on commit 6690b6c

Please sign in to comment.