CoolFace
Apppublic

Umama-at-Bluchip/Quick-UI

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
implementation.js19 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		test(shim + ': implementation', { todo: true });14	}15	if (shimTests) {16		shimTests.implementation();17	}18});19