pusher-js
Version:
Pusher Channels JavaScript library for browsers, React Native, NodeJS and web workers
10 lines (7 loc) • 394 B
JavaScript
// the webpack context API uses Object.keys and Array.prototype.forEach
// both of which are unavailable in old versions of IE.
require('../polyfills');
var sharedTestsContext = require.context("./core", true, /_spec$/);
sharedTestsContext.keys().forEach(sharedTestsContext);
var nodeTestsContext = require.context("./web", true, /_spec$/);
nodeTestsContext.keys().forEach(nodeTestsContext);