spelling: occurred

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2025-01-02 15:37:46 -05:00
parent 2c2977fbc8
commit 4b7aaecd5c

View file

@ -51,7 +51,7 @@ describe('restoreCache', () => {
); );
}); });
it('should inform if cache hit is not occured', async () => { it('should inform if cache hit is not occurred', async () => {
//Arrange //Arrange
hashFilesSpy.mockImplementation((somePath: string) => { hashFilesSpy.mockImplementation((somePath: string) => {
return new Promise<string>(resolve => { return new Promise<string>(resolve => {
@ -74,7 +74,7 @@ describe('restoreCache', () => {
expect(infoSpy).toHaveBeenCalledWith(`Cache is not found`); expect(infoSpy).toHaveBeenCalledWith(`Cache is not found`);
}); });
it('should set output if cache hit is occured', async () => { it('should set output if cache hit is occurred', async () => {
//Arrange //Arrange
hashFilesSpy.mockImplementation((somePath: string) => { hashFilesSpy.mockImplementation((somePath: string) => {
return new Promise<string>(resolve => { return new Promise<string>(resolve => {