Skip to content

Commit 56e83b9

Browse files
authored
chore(connection-form): fix typos in use-connect-form.spec.ts (#5916)
1 parent e027af3 commit 56e83b9

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

packages/connection-form/src/hooks/use-connect-form.spec.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)