Skip to content

fix(test): migration test#5725

Open
seia-soto wants to merge 1 commit into
ghostery:masterfrom
seia-soto:fix-migration-test
Open

fix(test): migration test#5725
seia-soto wants to merge 1 commit into
ghostery:masterfrom
seia-soto:fix-migration-test

Conversation

@seia-soto

Copy link
Copy Markdown
Member

fixes #5724

@seia-soto seia-soto self-assigned this Jun 4, 2026
@seia-soto seia-soto requested a review from remusao as a code owner June 4, 2026 08:57
@seia-soto seia-soto added the PR: Internal 🏠 Changes only affect internals label Jun 4, 2026
Comment on lines 21 to 28
return new Promise<string>((resolve, reject) => {
const process = spawn(cmd, args, {
const child = spawn(cmd, args, {
cwd,
});
const chunks: string[] = [];
process.stdout.on('data', (chunk) => chunks.push(chunk));
process.once('error', (error) => reject(error));
process.once('close', (code) => {
child.stdout.on('data', (chunk) => chunks.push(chunk));
child.once('error', (error) => reject(error));
child.once('close', (code) => {
if (code === null) {

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

When I was messing around with the issue, I realised that having process as a variable name is not great. Not necessary change but I'm willing to change in this pull request.

@seia-soto seia-soto requested a review from philipp-classen June 4, 2026 08:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

PR: Internal 🏠 Changes only affect internals

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Migration test fails on recurring test runs

1 participant