From 9c025e12b9f07ad6372332c089f75d8e254571e1 Mon Sep 17 00:00:00 2001 From: hiro Date: Fri, 17 May 2024 07:31:32 +0900 Subject: [PATCH] Fix typos in test descriptions in router-rerender integration tests (#65834) This PR fixes minor typos in the test descriptions within the `router-rerender` integration tests. - Fixed "unneccesary" to "unnecessary" in the middleware test description. Co-authored-by: JJ Kasper --- test/integration/router-rerender/test/index.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration/router-rerender/test/index.test.js b/test/integration/router-rerender/test/index.test.js index c04d0f29b6..f0c4234bb4 100644 --- a/test/integration/router-rerender/test/index.test.js +++ b/test/integration/router-rerender/test/index.test.js @@ -17,7 +17,7 @@ let app const runTests = () => { describe('with middleware', () => { - it('should not trigger unncessary rerenders when middleware is used', async () => { + it('should not trigger unnecessary rerenders when middleware is used', async () => { const browser = await webdriver(appPort, '/') await new Promise((resolve) => setTimeout(resolve, 100)) @@ -27,7 +27,7 @@ const runTests = () => { describe('with rewrites', () => { // TODO: Figure out the `isReady` issue. - it.skip('should not trigger unncessary rerenders when rewrites are used', async () => {}) + it.skip('should not trigger unnecessary rerenders when rewrites are used', async () => {}) it.skip('should rerender with the correct query parameter if present with rewrites', async () => {}) }) }