From 93a1b73efed0e848efcf5342716792ca86fa13e3 Mon Sep 17 00:00:00 2001 From: "Trevor D. Miller" Date: Thu, 4 May 2017 11:06:58 -0600 Subject: [PATCH] Removing unneeded dev dependency (#1869) babel-jest is included automatically by jest when a babel config is present, so including it manually here doesn't do anything. > "Note: babel-jest is automatically installed when installing Jest and will automatically transform files if a babel configuration exists in your project." http://facebook.github.io/jest/docs/en/getting-started.html#using-babel --- examples/with-jest/package.json | 1 - 1 file changed, 1 deletion(-) diff --git a/examples/with-jest/package.json b/examples/with-jest/package.json index 6614af9b..ec84a88d 100644 --- a/examples/with-jest/package.json +++ b/examples/with-jest/package.json @@ -12,7 +12,6 @@ "start": "next start" }, "devDependencies": { - "babel-jest": "^18.0.0", "enzyme": "^2.5.1", "jest-cli": "^18.0.0", "react-addons-test-utils": "^15.4.2",