UNPKG

343 BJavaScriptView Raw
1var each = require('seebigs-each');
2var FeatherTest = require('feather-test');
3
4var myTest = new FeatherTest({
5 specs: './specs/shims.spec.js',
6});
7
8myTest.run(function (err) {
9 if (!err) {
10 console.log();
11 each(window.testValues, function (val, shimName) {
12 console.log(' ' + shimName);
13 });
14 }
15});