@@ -804,7 +804,7 @@ describe('use-connect-form hook', function () {
804
804
} ) ;
805
805
806
806
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 ( ) {
808
808
const connectionStringUrl = new ConnectionStringUrl (
809
809
'mongodb://localhost:27019/admin'
810
810
) ;
@@ -822,7 +822,7 @@ describe('use-connect-form hook', function () {
822
822
) . to . equal ( '/awesome' ) ;
823
823
} ) ;
824
824
825
- it ( 'should udpate connection path - to empty value' , function ( ) {
825
+ it ( 'should update connection path - to empty value' , function ( ) {
826
826
const connectionStringUrl = new ConnectionStringUrl (
827
827
'mongodb://localhost:27019/admin'
828
828
) ;
@@ -931,7 +931,7 @@ describe('use-connect-form hook', function () {
931
931
) ;
932
932
} ) ;
933
933
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 ( ) {
935
935
const { result : initialState } = renderHook ( ( ) =>
936
936
useConnectForm ( initialConnectionInfo , null )
937
937
) ;
@@ -971,7 +971,7 @@ describe('use-connect-form hook', function () {
971
971
) ;
972
972
} ) ;
973
973
974
- it ( 'should be infered from the connection url when changed' , function ( ) {
974
+ it ( 'should be inferred from the connection url when changed' , function ( ) {
975
975
const { result : initialState } = renderHook ( ( ) =>
976
976
useConnectForm ( initialConnectionInfo , null )
977
977
) ;
@@ -989,7 +989,7 @@ describe('use-connect-form hook', function () {
989
989
expect ( result . personalizationOptions . isNameDirty ) . to . be . false ;
990
990
} ) ;
991
991
992
- it ( 'should not be infered when the name is dirty' , function ( ) {
992
+ it ( 'should not be inferred when the name is dirty' , function ( ) {
993
993
const { result : initialState } = renderHook ( ( ) =>
994
994
useConnectForm ( initialConnectionInfo , null )
995
995
) ;
0 commit comments