There was an error while loading. Please reload this page.
1 parent 57f0207 commit 5d17bc6Copy full SHA for 5d17bc6
global-teardown.ts
@@ -2,10 +2,10 @@ import path from 'path';
2
import AdmZip from 'adm-zip';
3
4
async function globalTeardown() {
5
- // const reportPath = path.join(__dirname, `html-report`);
6
- // const zip = new AdmZip();
7
- // zip.addLocalFolder(reportPath, `./html-report`);
8
- // zip.writeZip(`./html-report.zip`);
+ const reportPath = path.join(__dirname, `html-report`);
+ const zip = new AdmZip();
+ zip.addLocalFolder(reportPath, `./html-report`);
+ zip.writeZip(`./html-report.zip`);
9
}
10
11
export default globalTeardown;
0 commit comments