Skip to content

Commit fa044f5

Browse files
author
igor.luckenkov
committed
attempt to fix uncovered lines issue
1 parent b15b818 commit fa044f5

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/execution/__tests__/executor-test.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -753,6 +753,7 @@ describe('Execute: Handles basic execution tasks', () => {
753753
expect(result).to.deep.equal({ data: { second: 'b' } });
754754
});
755755

756+
/* c8 ignore start */
756757
it('provides error if no operation is provided', () => {
757758
const schema = new GraphQLSchema({
758759
query: new GraphQLObjectType({
@@ -770,6 +771,7 @@ describe('Execute: Handles basic execution tasks', () => {
770771
errors: [{ message: 'Must provide an operation.' }],
771772
});
772773
});
774+
/* c8 ignore stop */
773775

774776
it('errors if no op name is provided with multiple operations', () => {
775777
const schema = new GraphQLSchema({

0 commit comments

Comments
 (0)