main
Last change
on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
362 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 | test(shim + ': implementation', { todo: true });
|
---|
14 | }
|
---|
15 | if (shimTests) {
|
---|
16 | shimTests.implementation();
|
---|
17 | }
|
---|
18 | });
|
---|
Note:
See
TracBrowser
for help on using the repository browser.