Skip to content

Using Custom Arguments and Configuration Properties

Colin Snover edited this page Mar 10, 2014 · 4 revisions

As of Intern 1.6, it is possible to retrieve the current Intern configuration being used to run tests, as well as retrieve custom arguments. This information is available from the main intern object:

require([ 'intern' ], function (intern) {
  // arguments object
  intern.args;

  // config object
  intern.config;
});

Clone this wiki locally