Basically I added a study in the dashboard and added the files/folders from simple minno server.
my file structure:
results
- .gitignore
- htaccess
study.race
- mgr.js
- raceiat.js
... (all the other files in this folder and I added a modified iat test (amp_iat from the extensions folder) so that raceiat calls that modified extension rather than the link originally from project implicit)
- index.html
- csv.php
I was able to run the mgr.js file and have the iat test running (raceiat), I can print the logs to console with this code in my iat test file:
API.addSettings('hooks',{
endTask: function(){
var logs = API.getLogs();//saving the logs
console.log(logs);
however this somehow doesn't work to write to the results folder and add a csv: API.addSettings('logger',{type:'csv', url:'csv.php'});
Hopefully that clarifies my issue, for some reason I can't seem to attach files but I can send my code over as well if that doesn't make sense.