@@ -804,7 +804,7 @@ describe('use-connect-form hook', function () {
804804 } ) ;
805805
806806 describe ( 'update-connection-path action' , function ( ) {
807- it ( 'should udpate connection path - to input value' , function ( ) {
807+ it ( 'should update connection path - to input value' , function ( ) {
808808 const connectionStringUrl = new ConnectionStringUrl (
809809 'mongodb://localhost:27019/admin'
810810 ) ;
@@ -822,7 +822,7 @@ describe('use-connect-form hook', function () {
822822 ) . to . equal ( '/awesome' ) ;
823823 } ) ;
824824
825- it ( 'should udpate connection path - to empty value' , function ( ) {
825+ it ( 'should update connection path - to empty value' , function ( ) {
826826 const connectionStringUrl = new ConnectionStringUrl (
827827 'mongodb://localhost:27019/admin'
828828 ) ;
@@ -931,7 +931,7 @@ describe('use-connect-form hook', function () {
931931 ) ;
932932 } ) ;
933933
934- it ( 'should not be infered from the connection url when changed' , function ( ) {
934+ it ( 'should not be inferred from the connection url when changed' , function ( ) {
935935 const { result : initialState } = renderHook ( ( ) =>
936936 useConnectForm ( initialConnectionInfo , null )
937937 ) ;
@@ -971,7 +971,7 @@ describe('use-connect-form hook', function () {
971971 ) ;
972972 } ) ;
973973
974- it ( 'should be infered from the connection url when changed' , function ( ) {
974+ it ( 'should be inferred from the connection url when changed' , function ( ) {
975975 const { result : initialState } = renderHook ( ( ) =>
976976 useConnectForm ( initialConnectionInfo , null )
977977 ) ;
@@ -989,7 +989,7 @@ describe('use-connect-form hook', function () {
989989 expect ( result . personalizationOptions . isNameDirty ) . to . be . false ;
990990 } ) ;
991991
992- it ( 'should not be infered when the name is dirty' , function ( ) {
992+ it ( 'should not be inferred when the name is dirty' , function ( ) {
993993 const { result : initialState } = renderHook ( ( ) =>
994994 useConnectForm ( initialConnectionInfo , null )
995995 ) ;
0 commit comments