From 1a3145b8d3eaa13795cb4d999824e9fd002d46b8 Mon Sep 17 00:00:00 2001 From: Himanshu Singh Date: Mon, 11 Dec 2023 13:11:17 +0100 Subject: [PATCH] chore: minor update to test title --- src/test/suite/views/webview-app/overview-page.test.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/test/suite/views/webview-app/overview-page.test.tsx b/src/test/suite/views/webview-app/overview-page.test.tsx index ef1f399d0..afd371e09 100644 --- a/src/test/suite/views/webview-app/overview-page.test.tsx +++ b/src/test/suite/views/webview-app/overview-page.test.tsx @@ -111,7 +111,7 @@ describe('OverviewPage test suite', function () { expect(screen.queryByTestId(connectionFormTestId)).to.not.exist; }); - it('should not on results from other connection attempts', function () { + it('should not display results from other connection attempts', function () { render(); screen.getByText('Open form').click(); screen.getByTestId('connect-button').click(); @@ -121,7 +121,7 @@ describe('OverviewPage test suite', function () { new MessageEvent('message', { data: { command: MESSAGE_TYPES.CONNECT_RESULT, - connectionAttemptId: 1, + connectionAttemptId: 1, // different from the attempt id generated by our click connectionSuccess: true, connectionMessage: '', }, @@ -136,7 +136,7 @@ describe('OverviewPage test suite', function () { new MessageEvent('message', { data: { command: MESSAGE_TYPES.CONNECT_RESULT, - connectionAttemptId: 2, + connectionAttemptId: 2, // different from the attempt id generated by our click connectionSuccess: false, connectionMessage: 'something bad happened', },