Files
elasticsearch-js/test/unit/index.js
Spencer 7c1573fb07 Use standard and prettier (#10)
* switch from custom eslint config to standard + prettier

* fix new standard eslint violations

* add editorconfig file

* auto-fix all other violations

* update lint yarn script

* remove jshint comment
2019-07-09 13:24:13 -07:00

10 lines
227 B
JavaScript

require('bluebird').longStackTraces();
const { resolve } = require('path');
var specDir = resolve(__dirname, 'specs');
require('fs')
.readdirSync(specDir)
.forEach(function(file) {
require(specDir + '/' + file);
});