|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
388 bytes
|
| Rev | Line | |
|---|
| [9af201e] | 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, import/no-dynamic-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.