Skip to content

Commit

Permalink
fix: lint error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
olehbairak committed Mar 7, 2024
1 parent ac55ca4 commit 4c350d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/integration-tests/src/helper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export class Helper {

async executeScript(script: string) {
return new Promise((resolve, reject) => {
exec(script, { encoding: "utf-8" }, (error, stdout, stderr) => {
exec(script, { encoding: "utf-8" }, (error, stdout) => {
if (error) {
console.error(`Error executing script "${script}":`, error);
reject(error);
Expand Down

0 comments on commit 4c350d0

Please sign in to comment.