Not able to stop a long running task using promise.race and settimeout [duplicate]

in this code block my requirement is to execute a functionality such that the function test() should stop executing ( it was going through an infinite loop and crashing the page) if it takes more than than 1 min.

I used promise and timeout to solve this issue but here the problem i am facing is timeout function is being called even before executeWithRace was executed and it is not working as expected, How to refactor this code?

async function executeWithRace() {
    const response = await Promise.race([timeoutPromise, testPromise]);
    console.log(response)
}


    const timeoutPromise = new Promise((resolve, reject) => {
        setTimeout(() => {
            resolve('Timed Out');
        }, 60000); // 1 minute timeout
    });
 



  
    const testPromise = new Promise((resolve, reject) => {
        
            test(); // Execute the original test function
            resolve("testSuccessfull"); // Resolve if test function completes without error
      
    });

Thanks

I also tried to create functions for both of the promises and passed those functions to promise.race() but here I have faced this situation : only the first mentioned function in promise.race() was being executed and both the functions weren’t being executed simultaneously.

—I wanted to know why this issue “only the first mentioned function in promise.race() was being executed and both the functions weren’t being executed simultaneously” when functions are passed to promise.race instead of promise objects, I noticed this by adding some debugging console logs.