audit, lint, format

This commit is contained in:
bethanyj28
2024-02-22 17:55:53 -05:00
parent 81d5e48db0
commit b956d8a4dd
2 changed files with 3 additions and 4 deletions

View File

@@ -83,7 +83,6 @@ const createTestArchive = async (): Promise<void> => {
const expectExtractedArchive = async (dir: string): Promise<void> => {
for (const file of fixtures.exampleArtifact.files) {
const filePath = path.join(dir, file.path)
console.log('Checking file:', filePath)
expect(fs.readFileSync(filePath, 'utf8')).toEqual(file.content)
}
}