ember-introjs
Version:
An Ember Component for intro.js
29 lines (21 loc) • 626 B
JavaScript
/* global self, define */
// Declare `expect` as a global here instead of as a var in individual tests.
// This avoids jshint warnings re: `Redefinition of 'expect'`.
self.expect = self.chai.expect;
(function() {
function vendorModule() {
'use strict';
return {
default: self.chai,
assert: self.chai.assert,
expect: self.chai.expect,
should: self.chai.should,
config: self.chai.config,
use: self.chai.use,
util: self.chai.util,
Assertion: self.chai.Assertion,
AssertionError: self.chai.AssertionError,
};
}
define('chai', [], vendorModule);
})();