This is a lower-level API. Lower-level APIs are not recommended for most projects, and may not be available on all plans. See our page on recommended deployment patterns for more information.
Event Assess API

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.
Was this article helpful?