Skip to content

Commit 43c0d46

Browse files
IvanGoncharovmjmahone
authored andcommitted
fix imports (#1372)
1 parent f9b0bae commit 43c0d46

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/__tests__/starWarsIntrospection-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
import { expect } from 'chai';
1111
import { describe, it } from 'mocha';
12-
import { StarWarsSchema } from './starWarsSchema.js';
12+
import { StarWarsSchema } from './starWarsSchema';
1313
import { graphqlSync } from '../graphql';
1414

1515
describe('Star Wars Introspection Tests', () => {

src/__tests__/starWarsQuery-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
import { expect } from 'chai';
1111
import { describe, it } from 'mocha';
12-
import { StarWarsSchema } from './starWarsSchema.js';
12+
import { StarWarsSchema } from './starWarsSchema';
1313
import { graphql } from '../graphql';
1414

1515
describe('Star Wars Query Tests', () => {

src/__tests__/starWarsSchema.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import {
1717
GraphQLString,
1818
} from '../type';
1919

20-
import { getFriends, getHero, getHuman, getDroid } from './starWarsData.js';
20+
import { getFriends, getHero, getHuman, getDroid } from './starWarsData';
2121

2222
/**
2323
* This is designed to be an end-to-end test, demonstrating

src/__tests__/starWarsValidation-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
import { expect } from 'chai';
1111
import { describe, it } from 'mocha';
12-
import { StarWarsSchema } from './starWarsSchema.js';
12+
import { StarWarsSchema } from './starWarsSchema';
1313
import { Source } from '../language/source';
1414
import { parse } from '../language/parser';
1515
import { validate } from '../validation/validate';

0 commit comments

Comments
 (0)