Improve code quality

This commit is contained in:
Shivam Mathur
2020-03-14 07:53:43 +05:30
parent 6a4159ba98
commit fa8a671e6f
11 changed files with 44 additions and 54 deletions
-10
View File
@@ -1,16 +1,6 @@
import * as io from '@actions/io';
import * as path from 'path';
import * as fs from 'fs';
import * as matchers from '../src/matchers';
async function cleanup(path: string): Promise<void> {
fs.unlink(path, error => {
if (error) {
console.log(error);
}
});
}
jest.mock('@actions/io');
describe('Matchers', () => {