Assess API Events
test:reading:end
Fires when the configured reading time period has ended.
You would want to be notified about this event firing, because you might want to display a custom message that the assessment has started, for example.
Examples
itemsApp.on('test:reading:end', function () {
console.log('This code executes when the reading time has ended.');
});
Related articles
- The
test:reading:start
event, the event that occurs when the reading time has started. - The
reading_mode
initialization option, which allows you to configure the reading mode for the assessment.