CoolFace
Apppublic

Umama-at-Bluchip/Quick-UI

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
index.js21 linesDownload Raw Back to test
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-require12	} catch (e) {13		console.error(e);14		test(shim + ': index', { todo: true });15	}16	if (shimTests) {17		shimTests.index();18	}19});20 21