I have a simple-minno-server running and I am able to create questions and timed tests and write them out via csv.
However, now I need run this test:
The API.addSettings('logger', {
// gather logs in array
create a CSV and returns it:
return toCsv(content);
// Set logs into an input (i.e. put them wherever you want)
send: function(name, serialized){
window.minnoJS.logger(serialized);
}
How do I get the minno-server to write this data out? I assume this code is
qualtrics specific?
Any help appreciated.
Thanks!