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

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 388 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, import/no-dynamic-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.