From a7f8cbaed19b448939179e564c8191608f42e7f6 Mon Sep 17 00:00:00 2001 From: Adam Harvey Date: Tue, 29 Dec 2020 01:03:25 -0500 Subject: [PATCH] Fix test description typos --- .../src/scaffolder/stages/publish/helpers.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/scaffolder-backend/src/scaffolder/stages/publish/helpers.test.ts b/plugins/scaffolder-backend/src/scaffolder/stages/publish/helpers.test.ts index 3a317adacd..61d8e459bc 100644 --- a/plugins/scaffolder-backend/src/scaffolder/stages/publish/helpers.test.ts +++ b/plugins/scaffolder-backend/src/scaffolder/stages/publish/helpers.test.ts @@ -66,7 +66,7 @@ describe('pushToRemoteCred', () => { expect(mockIndex.writeTree).toHaveBeenCalled(); }); - it('should create a commit with on head with the right name and commiter', async () => { + it('should create a commit with on head with the right name and committer', async () => { const mockSignature = { mockSignature: 'bloblly' }; Signature.now.mockReturnValue(mockSignature); @@ -94,7 +94,7 @@ describe('pushToRemoteCred', () => { expect(Remote.create).toHaveBeenCalledWith(mockRepo, 'origin', 'mockclone'); }); - it('shoud push to the remote repo', async () => { + it('should push to the remote repo', async () => { await pushToRemoteCred(directory, remote, credentialsProvider); const [remotes, { callbacks }] = mockRemote.push.mock