Skip to content

Commit

Permalink
chore: apply linter
Browse files Browse the repository at this point in the history
  • Loading branch information
bcoe committed Mar 23, 2020
1 parent 2992c70 commit 4c5ae85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion samples/test/test.js
Expand Up @@ -16,7 +16,7 @@ const {assert} = require('chai');
const {describe, it} = require('mocha');
const cp = require('child_process');

const execSync = (cmd) => cp.execSync(cmd, {encoding: 'utf-8'});
const execSync = cmd => cp.execSync(cmd, {encoding: 'utf-8'});

describe('quickstart samples', () => {
it('should run the quickstart', async () => {
Expand Down

0 comments on commit 4c5ae85

Please sign in to comment.