Skip to content

Commit 7c8beb7

Browse files
committed
test: Fix broken tests after graphql-compose update
1 parent ce1f7dc commit 7c8beb7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/__tests__/connectionResolver-test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ describe('connectionResolver', () => {
3939
findResolverName: 'findMany',
4040
sort: sortOptions,
4141
})
42-
).to.throw("should have resolver with name 'countDoesNotExists'");
42+
).to.throw("does not have resolver with name 'countDoesNotExists'");
4343
});
4444

4545
it('should throw error if opts.findResolverName are empty', () => {
@@ -57,7 +57,7 @@ describe('connectionResolver', () => {
5757
findResolverName: 'findManyDoesNotExists',
5858
sort: sortOptions,
5959
})
60-
).to.throw("should have resolver with name 'findManyDoesNotExists'");
60+
).to.throw("does not have resolver with name 'findManyDoesNotExists'");
6161
});
6262
});
6363

0 commit comments

Comments
 (0)