From c1d057d7b27a97ab4211b51e2e00cb52bb685806 Mon Sep 17 00:00:00 2001 From: "Kent C. Dodds" Date: Tue, 5 May 2020 09:57:07 -0600 Subject: [PATCH] chore: update all the dependencies --- package.json | 14 +++++++------- src/__tests__/misc.js | 2 +- src/__tests__/screen.js | 2 +- src/__tests__/wait-for.js | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/package.json b/package.json index 49771b1e..157e2549 100644 --- a/package.json +++ b/package.json @@ -35,19 +35,19 @@ "dist" ], "dependencies": { - "@babel/runtime": "^7.9.2", - "@types/testing-library__dom": "^7.0.0", + "@babel/runtime": "^7.9.6", + "@types/testing-library__dom": "^7.0.2", "aria-query": "^4.0.2", - "dom-accessibility-api": "^0.4.2", - "pretty-format": "^25.1.0" + "dom-accessibility-api": "^0.4.3", + "pretty-format": "^26.0.1" }, "devDependencies": { - "@testing-library/jest-dom": "^5.1.1", + "@testing-library/jest-dom": "^5.5.0", "jest-in-case": "^1.0.2", "jest-serializer-ansi": "^1.0.3", "jest-watch-select-projects": "^2.0.0", - "jsdom": "^16.2.1", - "kcd-scripts": "^5.6.0" + "jsdom": "^16.2.2", + "kcd-scripts": "^5.11.1" }, "eslintConfig": { "extends": "./node_modules/kcd-scripts/eslint.js", diff --git a/src/__tests__/misc.js b/src/__tests__/misc.js index 62b7eb9c..f5a19335 100644 --- a/src/__tests__/misc.js +++ b/src/__tests__/misc.js @@ -1,5 +1,5 @@ -import {render} from './helpers/test-utils' import {queryByAttribute} from '..' +import {render} from './helpers/test-utils' // we used to use queryByAttribute internally, but we don't anymore. Some people // use it as an undocumented part of the API, so we'll keep it around. diff --git a/src/__tests__/screen.js b/src/__tests__/screen.js index a2655adc..3a35bde8 100644 --- a/src/__tests__/screen.js +++ b/src/__tests__/screen.js @@ -1,5 +1,5 @@ -import {renderIntoDocument} from './helpers/test-utils' import {screen} from '..' +import {renderIntoDocument} from './helpers/test-utils' beforeEach(() => { jest.spyOn(console, 'log').mockImplementation(() => {}) diff --git a/src/__tests__/wait-for.js b/src/__tests__/wait-for.js index 4ba4702d..9faf9049 100644 --- a/src/__tests__/wait-for.js +++ b/src/__tests__/wait-for.js @@ -1,5 +1,5 @@ -import {renderIntoDocument} from './helpers/test-utils' import {waitFor} from '../' +import {renderIntoDocument} from './helpers/test-utils' test('waits callback to not throw an error', async () => { const spy = jest.fn()