update code style

This commit is contained in:
restrry 2020-05-22 10:08:13 +02:00
parent 3e28b90281
commit 2fefd60e90
7131 changed files with 31567 additions and 37324 deletions

View file

@ -17,7 +17,7 @@
* under the License.
*/
export default function({ loadTestFile }) {
export default function ({ loadTestFile }) {
describe('stats', () => {
loadTestFile(require.resolve('./stats'));
});

View file

@ -19,7 +19,7 @@
import expect from '@kbn/expect';
const assertStatsAndMetrics = body => {
const assertStatsAndMetrics = (body) => {
expect(body.kibana.name).to.be.a('string');
expect(body.kibana.uuid).to.be.a('string');
expect(body.kibana.host).to.be.a('string');
@ -53,7 +53,7 @@ const assertStatsAndMetrics = body => {
expect(body.concurrent_connections).to.be.a('number');
};
export default function({ getService }) {
export default function ({ getService }) {
const supertest = getService('supertest');
describe('kibana stats api', () => {
describe('basic', () => {