Fix tests

This commit is contained in:
Nick Cipollo
2019-12-12 19:04:42 -05:00
parent 455687cd65
commit f76aaf092f
2 changed files with 2 additions and 1 deletions

View File

@@ -34,7 +34,9 @@ describe('ArtifactUploader', () => {
function createUploader(): GithubArtifactUploader {
const MockReleases = jest.fn<Releases, any>(() => {
return {
getByTag: jest.fn(),
create: jest.fn(),
update: jest.fn(),
uploadArtifact: uploadMock
}
})