Skip to content
This repository has been archived by the owner on Apr 13, 2023. It is now read-only.

Commit

Permalink
Fix test utils (#748)
Browse files Browse the repository at this point in the history
* increase setTimeout for intermittent test failre

* fix test utils build

* Fix test reference
  • Loading branch information
James Baxley committed Jun 3, 2017
1 parent 75c9d05 commit 77cae5b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

### vNext

### 1.4.1
- Fix: Fix compilation of test-utils from move to ES bundles

### 1.4.0
#### BREAKING FOR TYPESCRIPT USERS
- Feature: Enhanced typescript definitions to allow for more valid type checking of graphql HOC [PR #695](https://github.com/apollographql/react-apollo/pull/695)
Expand Down
2 changes: 1 addition & 1 deletion examples/create-react-app/src/Pokemon.test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from "react";
import renderer from "react-test-renderer";
import { MockedProvider } from "../../../lib/react-apollo.test-utils.umd";
import { MockedProvider } from "../../../lib/test-utils";
import { print } from "graphql";
import { addTypenameToDocument } from "apollo-client/queries/queryTransform";

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-apollo",
"version": "1.4.0",
"version": "1.4.1",
"description": "React data container for Apollo Client",
"main": "lib/react-apollo.umd.js",
"module": "./lib/index.js",
Expand Down
2 changes: 1 addition & 1 deletion rollup.test-utils.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export default {
entry: "lib/test-utils.js",
dest: "lib/react-apollo.test-utils.umd.js",
dest: "lib/test-utils.js",
format: "umd",
sourceMap: true,
moduleName: "react-apollo",
Expand Down

0 comments on commit 77cae5b

Please sign in to comment.