Skip to content

Commit

Permalink
feat(core): fix formatting issues
Browse files Browse the repository at this point in the history
closes #232
  • Loading branch information
ostridm committed Mar 28, 2024
1 parent 4d8c69c commit 585f7d2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
2 changes: 1 addition & 1 deletion packages/core/src/types/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export * from './har';
export * from './postman';
export * from './openapi';
export * from './graphql';
export * from './graphql';
17 changes: 8 additions & 9 deletions packages/core/tests/GraphQLImporter.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,17 +36,16 @@ describe('GraphQLImporter', () => {

it('should import introspection envelope', async () => {
// arrange
const input =
await promisify(readFile)(
resolve(__dirname, './fixtures/graphql.json'),
'utf8'
);
const input = await promisify(readFile)(
resolve(__dirname, './fixtures/graphql.json'),
'utf8'
);

const expected = JSON.parse(
await promisify(readFile)(
resolve(__dirname, './fixtures/graphql.result.json'),
'utf8'
)
await promisify(readFile)(
resolve(__dirname, './fixtures/graphql.result.json'),
'utf8'
)
);

// act
Expand Down

0 comments on commit 585f7d2

Please sign in to comment.