source: imaps-frontend/node_modules/es-iterator-helpers/test/implementation.js

main
Last change on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 362 bytes
Line 
1'use strict';
2
3var test = require('tape');
4var forEach = require('for-each');
5
6var shims = require('../');
7
8forEach(shims, function (shim) {
9 var shimTests;
10 try {
11 shimTests = require('./' + shim); // eslint-disable-line global-require
12 } catch (e) {
13 test(shim + ': implementation', { todo: true });
14 }
15 if (shimTests) {
16 shimTests.implementation();
17 }
18});
Note: See TracBrowser for help on using the repository browser.