We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b62eac commit ebb070fCopy full SHA for ebb070f
test/sea/test-build-sea-custom-argv0.js
@@ -9,6 +9,7 @@ skipIfBuildSEAIsNotSupported();
9
10
const { resolve } = require('path');
11
const fixtures = require('../common/fixtures');
12
+const { rmSync } = require('fs');
13
14
const { spawnSyncAndAssert } = require('../common/child_process');
15
const fixturesDir = fixtures.path('sea', 'basic');
@@ -21,3 +22,5 @@ spawnSyncAndAssert(
21
22
}, {
23
stdout: /Generated single executable/,
24
});
25
+
26
+rmSync(resolve(fixturesDir, 'sea'));
0 commit comments