1
0
Fork 0

audit, lint, format

pull/1666/head
bethanyj28 2024-02-22 17:55:53 -05:00
parent 81d5e48db0
commit b956d8a4dd
2 changed files with 3 additions and 4 deletions

6
package-lock.json generated
View File

@ -6664,9 +6664,9 @@
}
},
"node_modules/ip": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz",
"integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==",
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/ip/-/ip-2.0.1.tgz",
"integrity": "sha512-lJUL9imLTNi1ZfXT+DU6rBBdbiKGBuay9B6xGSPVjUeQwaH1RIGqef8RZkUtHioLmSNpPR5M4HVKJGm1j8FWVQ==",
"dev": true
},
"node_modules/is-array-buffer": {

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)
}
}