main
Last change
on this file since d565449 was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
365 bytes
|
Line | |
---|
1 | 'use strict';
|
---|
2 |
|
---|
3 | var test = require('tape');
|
---|
4 | var forEach = require('for-each');
|
---|
5 |
|
---|
6 | var shims = require('../');
|
---|
7 |
|
---|
8 | forEach(shims, function (shim) {
|
---|
9 | var shimTests;
|
---|
10 | try {
|
---|
11 | shimTests = require('./' + shim); // eslint-disable-line global-require
|
---|
12 | } catch (e) {
|
---|
13 | console.error(e);
|
---|
14 | test(shim + ': index', { todo: true });
|
---|
15 | }
|
---|
16 | if (shimTests) {
|
---|
17 | shimTests.index();
|
---|
18 | }
|
---|
19 | });
|
---|
20 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.