Hi,
I have been facing a strange issue, i declared a csv file using sharedarray, but while running the test, my test starts utilizing a different csv file. I need to remove the file which it is pointing to and readd it again.
export const users_jobs = new SharedArray(‘another data name’, function () {
// Load CSV file and parse it using Papa Parse
let data_users = papaparse.parse(open(‘…/…/xxxx’), { header: true }).data;
return data_users;
})