Save current BZZZ config-ui state before CHORUS branding update
🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
20
install/config-ui/node_modules/es-iterator-helpers/test/index.js
generated
vendored
Normal file
20
install/config-ui/node_modules/es-iterator-helpers/test/index.js
generated
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
'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) {
|
||||
console.error(e);
|
||||
test(shim + ': index', { todo: true });
|
||||
}
|
||||
if (shimTests) {
|
||||
shimTests.index();
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user