mirror of
				https://github.com/actions/cache.git
				synced 2025-11-04 13:29:10 +08:00 
			
		
		
		
	Deleted stateprovider tests until added
This commit is contained in:
		@@ -1,20 +0,0 @@
 | 
				
			|||||||
import * as cache from "@actions/cache";
 | 
					 | 
				
			||||||
import * as core from "@actions/core";
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
import { Events, RefKey } from "../src/constants";
 | 
					 | 
				
			||||||
import * as actionUtils from "../src/utils/actionUtils";
 | 
					 | 
				
			||||||
import * as testUtils from "../src/utils/testUtils";
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
jest.mock("@actions/core");
 | 
					 | 
				
			||||||
jest.mock("@actions/cache");
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
beforeAll(() => {
 | 
					 | 
				
			||||||
    jest.spyOn(core, "getInput").mockImplementation((name, options) => {
 | 
					 | 
				
			||||||
        return jest.requireActual("@actions/core").getInput(name, options);
 | 
					 | 
				
			||||||
    });
 | 
					 | 
				
			||||||
});
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
afterEach(() => {
 | 
					 | 
				
			||||||
    delete process.env[Events.Key];
 | 
					 | 
				
			||||||
    delete process.env[RefKey];
 | 
					 | 
				
			||||||
});
 | 
					 | 
				
			||||||
		Reference in New Issue
	
	Block a user