ajv/spec/browser_test_suite.js

11 lines
244 B
JavaScript
Raw Permalink Normal View History

2016-10-04 23:16:18 +03:00
'use strict';
module.exports = function (suite) {
suite.forEach(function (file) {
if (file.name.indexOf('optional/format') == 0)
file.name = file.name.replace('optional/', '');
2016-10-04 23:16:18 +03:00
file.test = file.module;
});
return suite;
};