mirror of
				https://github.com/actions/cache.git
				synced 2025-11-04 13:29:10 +08:00 
			
		
		
		
	Linting errors fixed
This commit is contained in:
		@@ -25,7 +25,7 @@ afterEach(() => {
 | 
				
			|||||||
});
 | 
					});
 | 
				
			||||||
 | 
					
 | 
				
			||||||
test("StateProvider saves states", async () => {
 | 
					test("StateProvider saves states", async () => {
 | 
				
			||||||
    let states = new Map<string, string>();
 | 
					    const states = new Map<string, string>();
 | 
				
			||||||
    const getStateMock = jest
 | 
					    const getStateMock = jest
 | 
				
			||||||
        .spyOn(core, "getState")
 | 
					        .spyOn(core, "getState")
 | 
				
			||||||
        .mockImplementation(key => states.get(key) || "");
 | 
					        .mockImplementation(key => states.get(key) || "");
 | 
				
			||||||
@@ -47,8 +47,8 @@ test("StateProvider saves states", async () => {
 | 
				
			|||||||
    const stateProvider: IStateProvider = new StateProvider();
 | 
					    const stateProvider: IStateProvider = new StateProvider();
 | 
				
			||||||
    stateProvider.setState("stateKey", "stateValue");
 | 
					    stateProvider.setState("stateKey", "stateValue");
 | 
				
			||||||
    stateProvider.setState(State.CacheMatchedKey, cacheMatchedKey);
 | 
					    stateProvider.setState(State.CacheMatchedKey, cacheMatchedKey);
 | 
				
			||||||
    let stateValue = stateProvider.getState("stateKey");
 | 
					    const stateValue = stateProvider.getState("stateKey");
 | 
				
			||||||
    let cacheStateValue = stateProvider.getCacheState();
 | 
					    const cacheStateValue = stateProvider.getCacheState();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    expect(stateValue).toBe("stateValue");
 | 
					    expect(stateValue).toBe("stateValue");
 | 
				
			||||||
    expect(cacheStateValue).toBe(cacheMatchedKey);
 | 
					    expect(cacheStateValue).toBe(cacheMatchedKey);
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user