mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
chore: remove rimraf from browsers (#9874)
This commit is contained in:
parent
e3b8321f55
commit
de6e6a69a1
2
package-lock.json
generated
2
package-lock.json
generated
@ -9138,7 +9138,6 @@
|
|||||||
"https-proxy-agent": "5.0.1",
|
"https-proxy-agent": "5.0.1",
|
||||||
"progress": "2.0.3",
|
"progress": "2.0.3",
|
||||||
"proxy-from-env": "1.1.0",
|
"proxy-from-env": "1.1.0",
|
||||||
"rimraf": "4.4.0",
|
|
||||||
"tar-fs": "2.1.1",
|
"tar-fs": "2.1.1",
|
||||||
"unbzip2-stream": "1.4.3",
|
"unbzip2-stream": "1.4.3",
|
||||||
"yargs": "17.7.1"
|
"yargs": "17.7.1"
|
||||||
@ -10097,7 +10096,6 @@
|
|||||||
"https-proxy-agent": "5.0.1",
|
"https-proxy-agent": "5.0.1",
|
||||||
"progress": "2.0.3",
|
"progress": "2.0.3",
|
||||||
"proxy-from-env": "1.1.0",
|
"proxy-from-env": "1.1.0",
|
||||||
"rimraf": "4.4.0",
|
|
||||||
"tar-fs": "2.1.1",
|
"tar-fs": "2.1.1",
|
||||||
"unbzip2-stream": "1.4.3",
|
"unbzip2-stream": "1.4.3",
|
||||||
"yargs": "17.7.1"
|
"yargs": "17.7.1"
|
||||||
|
@ -75,7 +75,6 @@
|
|||||||
"https-proxy-agent": "5.0.1",
|
"https-proxy-agent": "5.0.1",
|
||||||
"progress": "2.0.3",
|
"progress": "2.0.3",
|
||||||
"proxy-from-env": "1.1.0",
|
"proxy-from-env": "1.1.0",
|
||||||
"rimraf": "4.4.0",
|
|
||||||
"tar-fs": "2.1.1",
|
"tar-fs": "2.1.1",
|
||||||
"unbzip2-stream": "1.4.3",
|
"unbzip2-stream": "1.4.3",
|
||||||
"yargs": "17.7.1"
|
"yargs": "17.7.1"
|
||||||
|
@ -14,10 +14,9 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
import fs from 'fs';
|
||||||
import path from 'path';
|
import path from 'path';
|
||||||
|
|
||||||
import rimraf from 'rimraf';
|
|
||||||
|
|
||||||
import {Browser, BrowserPlatform} from './browser-data/browser-data.js';
|
import {Browser, BrowserPlatform} from './browser-data/browser-data.js';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -54,6 +53,10 @@ export class Cache {
|
|||||||
}
|
}
|
||||||
|
|
||||||
clear(): void {
|
clear(): void {
|
||||||
rimraf.sync(this.#rootDir);
|
fs.rmSync(this.#rootDir, {
|
||||||
|
force: true,
|
||||||
|
recursive: true,
|
||||||
|
maxRetries: 5,
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -19,8 +19,6 @@ import fs from 'fs';
|
|||||||
import os from 'os';
|
import os from 'os';
|
||||||
import path from 'path';
|
import path from 'path';
|
||||||
|
|
||||||
import rimraf from 'rimraf';
|
|
||||||
|
|
||||||
import {BrowserPlatform} from '../../lib/cjs/browser-data/browser-data.js';
|
import {BrowserPlatform} from '../../lib/cjs/browser-data/browser-data.js';
|
||||||
import {
|
import {
|
||||||
createProfile,
|
createProfile,
|
||||||
@ -85,7 +83,11 @@ describe('Firefox', () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
afterEach(() => {
|
afterEach(() => {
|
||||||
rimraf.sync(tmpDir);
|
fs.rmSync(tmpDir, {
|
||||||
|
force: true,
|
||||||
|
recursive: true,
|
||||||
|
maxRetries: 5,
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should create a profile', async () => {
|
it('should create a profile', async () => {
|
||||||
|
Loading…
Reference in New Issue
Block a user