Skip to content

Commit ba1d469

Browse files
authored
chore: update jest to latest (#213)
* chore: update jest to latest * test: fix one failing after an update to latest jest
1 parent 7a4d8ba commit ba1d469

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
"graphql": "^0.8.2",
5555
"graphql-tag": "^1.1.2",
5656
"husky": "^0.12.0",
57-
"jest": "^17.0.0",
57+
"jest": "^18.1.0",
5858
"reflect-metadata": "^0.1.8",
5959
"remap-istanbul": "^0.8.4",
6060
"rimraf": "^2.5.2",

tests/ApolloModule.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ describe('ApolloModule', () => {
3636
const providers = result.providers[1]; // skips APOLLO_PROVIDERS
3737

3838
it('should contain ApolloModule as ngModule', () => {
39-
expect(result.ngModule).toBe(ApolloModule);
39+
expect(result.ngModule === ApolloModule).toBe(true);
4040
});
4141

4242
it('should provide a wrapper directly', () => {

0 commit comments

Comments
 (0)