ohctechv3/.svn/pristine/c9/c96ef95ab1d7c16a76161c16fa52a5aace71afde.svn-base
2024-10-28 15:03:36 +05:30

19 lines
362 B
Plaintext

'use strict';
var test = require('tape');
var forEach = require('for-each');
var shims = require('../');
forEach(shims, function (shim) {
var shimTests;
try {
shimTests = require('./' + shim); // eslint-disable-line global-require
} catch (e) {
test(shim + ': implementation', { todo: true });
}
if (shimTests) {
shimTests.implementation();
}
});