Skip to content

Commit

Permalink
fix imports (#1372)
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanGoncharov authored and mjmahone committed Jun 7, 2018
1 parent f9b0bae commit 43c0d46
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/__tests__/starWarsIntrospection-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

import { expect } from 'chai';
import { describe, it } from 'mocha';
import { StarWarsSchema } from './starWarsSchema.js';
import { StarWarsSchema } from './starWarsSchema';
import { graphqlSync } from '../graphql';

describe('Star Wars Introspection Tests', () => {
Expand Down
2 changes: 1 addition & 1 deletion src/__tests__/starWarsQuery-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

import { expect } from 'chai';
import { describe, it } from 'mocha';
import { StarWarsSchema } from './starWarsSchema.js';
import { StarWarsSchema } from './starWarsSchema';
import { graphql } from '../graphql';

describe('Star Wars Query Tests', () => {
Expand Down
2 changes: 1 addition & 1 deletion src/__tests__/starWarsSchema.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import {
GraphQLString,
} from '../type';

import { getFriends, getHero, getHuman, getDroid } from './starWarsData.js';
import { getFriends, getHero, getHuman, getDroid } from './starWarsData';

/**
* This is designed to be an end-to-end test, demonstrating
Expand Down
2 changes: 1 addition & 1 deletion src/__tests__/starWarsValidation-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

import { expect } from 'chai';
import { describe, it } from 'mocha';
import { StarWarsSchema } from './starWarsSchema.js';
import { StarWarsSchema } from './starWarsSchema';
import { Source } from '../language/source';
import { parse } from '../language/parser';
import { validate } from '../validation/validate';
Expand Down

0 comments on commit 43c0d46

Please sign in to comment.