Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Cleanup after test
  • Loading branch information
alexsch01 authored Feb 6, 2026
commit ebb070f563b0180baac6122588678bb789cda5ce
3 changes: 3 additions & 0 deletions test/sea/test-build-sea-custom-argv0.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ skipIfBuildSEAIsNotSupported();

const { resolve } = require('path');
const fixtures = require('../common/fixtures');
const { rmSync } = require('fs');

const { spawnSyncAndAssert } = require('../common/child_process');
const fixturesDir = fixtures.path('sea', 'basic');
Expand All @@ -21,3 +22,5 @@ spawnSyncAndAssert(
}, {
stdout: /Generated single executable/,
});

rmSync(resolve(fixturesDir, 'sea'));
Loading